Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
p2edwards committed Nov 23, 2024
1 parent 58e3a6f commit ce1060f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,14 @@ jobs:
filters: .github/filters.yml

# echoing (for testing purposes)
- if: steps.filter.outputs.should-run-npm-test
- if: ${{ steps.filter.outputs.should-run-npm-test == 'true' }}
run: echo 'frontend files changed; should run npm-test.yml'
- if: steps.filter.outputs.should-run-pytest

- if: ${{ steps.filter.outputs.should-run-pytest == 'true' }}
run: echo 'backend files changed; should run pytest.yml'
- if: steps.filter.outputs.should-run-darker

- if: ${{ steps.filter.outputs.should-run-darker == 'true' }}
run: echo 'python files changed; should run darker.yml'
- if: steps.filter.outputs.new-files-at-root-level

- if: ${{ steps.filter.outputs.new-files-at-root-level == 'true' }}
run: echo 'unlisted files changed; will likely run pytest and npm-test'

0 comments on commit ce1060f

Please sign in to comment.