Skip to content

Commit

Permalink
Run tests workflow once / week + ignore non-code files in PRs (#6)
Browse files Browse the repository at this point in the history
* Schedule tests workflow to run once per week

* Ignore changes to non-code files in PRs
  • Loading branch information
matt-graham authored Aug 16, 2023
1 parent 78fa69f commit 929cdf1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ on:
pull_request:
paths-ignore:
- "**.md"
- "**.rst"
- "**.svg"
- "docs/**"
- "CITATION.cff"
- "LICENSE"
schedule:
- cron: "0 0 * * 1"

jobs:
tests:
Expand Down Expand Up @@ -39,4 +46,4 @@ jobs:
run: python -m pip install tox tox-gh-actions

- name: Test with tox
run: tox
run: tox

0 comments on commit 929cdf1

Please sign in to comment.