Skip to content

Commit

Permalink
Use paths-ignore trigger filter for buth PR and pushes
Browse files Browse the repository at this point in the history
Previously only one of the trigger conditions had the filter.
This is a follow-up to #5364.
  • Loading branch information
michaelosthege committed Mar 19, 2022
1 parent 8b063f9 commit 038dc2c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/arviz_compat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: arviz-compatibility

on:
pull_request:
paths-ignore:
- "docs/**"
- "**/*.md"
- "**/*.rst"
push:
branches: [main]
paths:
- ".github/workflows/*"
- "pymc/**"
- "setup.py"
- "pyproject.toml"
- "buildosx"
- "conda-envs/**"
- "codecov.yml"
paths-ignore:
- "docs/**"
- "**/*.md"
- "**/*.rst"

jobs:
pytest:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/jaxtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: jax-sampling

on:
pull_request:
paths-ignore:
- "docs/**"
- "**/*.md"
- "**/*.rst"
push:
branches: [main]
paths:
- ".github/workflows/*"
- "pymc/**"
- "setup.py"
- "pyproject.toml"
- "buildosx"
- "conda-envs/**"
- "codecov.yml"
paths-ignore:
- "docs/**"
- "**/*.md"
- "**/*.rst"

jobs:
pytest:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: pytest

on:
pull_request:
paths-ignore:
- "docs/**"
- "**/*.md"
- "**/*.rst"
push:
branches: [main]
paths:
- ".github/workflows/*"
- "pymc/**"
- "setup.py"
- "pyproject.toml"
- "buildosx"
- "conda-envs/**"
- "codecov.yml"
paths-ignore:
- "docs/**"
- "**/*.md"
- "**/*.rst"


# Tests are split into multiple jobs to accelerate the CI.
Expand Down

0 comments on commit 038dc2c

Please sign in to comment.