Skip to content

Commit

Permalink
Update test_suite.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelshot91 authored Oct 17, 2023
1 parent 7dd3d18 commit 0c9e90d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,14 @@ jobs:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
paths_filter: |
rust:
paths: 'native/**'
paths_ignore: '["README.md", "TODO.md", "doc/**"]'
rust_test:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
# Do not run if no files in native/ have been changed since last job run
if: needs.pre_job.outputs.should_skip != 'true' || !fromJSON(needs.pre_job.outputs.paths_result).rust.should_skip
runs-on: self-hosted
defaults:
run:
Expand Down

0 comments on commit 0c9e90d

Please sign in to comment.