Skip to content

Commit

Permalink
Add missing items to integration test workflow path filter
Browse files Browse the repository at this point in the history
For the sake of efficiency, the integration test workflow is configured to only be triggered on changes to relevant
files.

Recent changes to the project infrastructure introduced additional relevant files, but those were not added to the path
filter at that time.
  • Loading branch information
per1234 committed Mar 25, 2023
1 parent 7e1f346 commit 0b6522b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,19 @@ on:
paths:
- '.github/workflows/test-integration.yml'
- '.github/workflows/testdata/**'
- '.python-version'
- 'poetry.lock'
- 'pyproject.toml'
- 'action.yml'
- 'compilesketches/**'

push:
paths:
- '.github/workflows/test-integration.yml'
- '.github/workflows/testdata/**'
- '.python-version'
- 'poetry.lock'
- 'pyproject.toml'
- 'action.yml'
- 'compilesketches/**'

Expand Down

0 comments on commit 0b6522b

Please sign in to comment.