Skip to content

Commit

Permalink
Merge pull request #134 from learningequality/cleanup_release_0.2.6
Browse files Browse the repository at this point in the history
Do better path match checking for python tests.
  • Loading branch information
rtibbles authored Jun 20, 2024
2 parents af915e1 + 5ce5989 commit 9335de4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/finalized_specs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Finalized specs

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

jobs:
change_check:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Linting

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

jobs:
pre_job:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/pythontest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Python tests

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

jobs:
pre_job:
Expand All @@ -14,7 +18,7 @@ jobs:
uses: fkirc/skip-duplicate-actions@master
with:
github_token: ${{ github.token }}
paths: '["**.py", ".github/workflows/pythontest.yml"]'
paths: '["**.py", ".github/workflows/pythontest.yml", "requirements-test.txt", "tox.ini"]'
unit_test:
name: Python unit tests
needs: pre_job
Expand Down

0 comments on commit 9335de4

Please sign in to comment.