-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
CI: skip tests when only files in doc/web changes (github actions) #41310
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
Changes from 21 commits
7eaca3f
ed48829
175eb94
644989c
719a524
2fa1f9a
b0dfb08
9c2fc06
e459da3
e193ca1
0c27427
431a3a4
8910b6a
2bc89aa
d5d531a
0637ecb
e283453
3529f7d
25ca63d
ffd9d7e
0048e25
4fed568
75a44f3
cae7f81
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ on: | |
branches: | ||
- master | ||
- 1.2.x | ||
paths-ignore: | ||
- "doc/**" | ||
|
||
env: | ||
PYTEST_WORKERS: "auto" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ on: | |
branches: | ||
- master | ||
- 1.2.x | ||
paths-ignore: | ||
- "doc/**" | ||
|
||
env: | ||
PYTEST_WORKERS: "auto" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ name: pre-commit | |
|
||
on: | ||
pull_request: | ||
paths-ignore: | ||
- "doc/**" | ||
push: | ||
branches: [master] | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ on: | |
pull_request: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- "doc/**" | ||
|
||
jobs: | ||
build: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
# Adapted from https://github.com/numba/numba/blob/master/azure-pipelines.yml | ||
trigger: | ||
- master | ||
- 1.2.x | ||
branches: | ||
include: | ||
- master | ||
- 1.2.x | ||
paths: | ||
exclude: | ||
- 'doc/*' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. any reason why the other have There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Yes, because this is the "azure" CI, and the other files are related to the "github actions" CI. |
||
|
||
pr: | ||
- master | ||
|
Uh oh!
There was an error while loading. Please reload this page.