We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa72a58 commit 554cd12Copy full SHA for 554cd12
.github/workflows/test.yaml
@@ -5,8 +5,23 @@ on:
5
6
7
jobs:
8
+ git-diff:
9
+ runs-on: ubuntu-latest
10
+ name: 'Git Diff - Powered by Rust'
11
+ outputs:
12
+ DIFF_FILES: ${{ steps.git-diff.outputs.DIFF_FILES }}
13
+ DIFF_COUNT: ${{ steps.git-diff.outputs.DIFF_COUNT }}
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: LuisLiraC/[email protected]
17
+ id: git-diff
18
+ with:
19
+ patterns: '*.rs'
20
+
21
test:
22
runs-on: ubuntu-latest
23
+ needs: [git-diff]
24
+ if: ${{ needs.git-diff.outputs.DIFF_COUNT != 0 }}
25
name: Run Tests
26
steps:
27
- uses: actions/checkout@v4
0 commit comments