Skip to content

Commit

Permalink
[CI] Selectively skip certain workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
aicorein committed Dec 26, 2024
1 parent 55737d9 commit 85ead2c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/make_doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,22 @@ on:
push:
branches:
main
paths:
- 'src/**'
- 'docs/**'
- 'scripts/**'
- '.github/workflows/make_doc.yml'
- 'README.md'

pull_request:
branches:
main
paths:
- 'src/**'
- 'docs/**'
- 'scripts/**'
- '.github/workflows/make_doc.yml'
- 'README.md'

jobs:
build_doc:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,22 @@ on:
push:
branches:
main
paths:
- 'src/**'
- 'scripts/**'
- 'tests/**'
- '.github/workflows/pytest.yml'
- 'pytest.ini'

pull_request:
branches:
main
paths:
- 'src/**'
- 'scripts/**'
- 'tests/**'
- '.github/workflows/pytest.yml'
- 'pytest.ini'

jobs:
run_tests:
Expand Down

0 comments on commit 85ead2c

Please sign in to comment.