Skip to content

Ignore ci for some subdirectories and files #1480

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Mar 3, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/bench.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
name: Benchmark

on: [pull_request]
on:
pull_request:
branches:
- '**'
paths-ignore:
- '**/docs/**'
- '**.md'
- '**/LICENSE'
- '.circleci/**'
- 'install/**'
- 'nix/**'
- 'test/**'
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think bench are not related with tests in any way, right?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

correct


jobs:
bench-init:
runs-on: ${{ matrix.os }}
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/nix.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
name: Nix

on: [pull_request]
on:
pull_request:
branches:
- '**'
paths-ignore:
- '**/docs/**'
- '**.md'
- '**/LICENSE'
- '.circleci/**'
- 'install/**'

jobs:
nix:
runs-on: ${{ matrix.os }}
Expand Down
13 changes: 12 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,18 @@ defaults:
run:
shell: bash

on: [pull_request]
on:
pull_request:
branches:
- '**'
paths-ignore:
- '**/docs/**'
- '**.md'
- '**/LICENSE'
- '.circleci/**'
- 'install/**'
- 'nix/**'

jobs:
test:
runs-on: ${{ matrix.os }}
Expand Down