We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5669f16 + bf10464 commit 00a5c0bCopy full SHA for 00a5c0b
1 file changed
.github/workflows/ci.yml
@@ -28,6 +28,10 @@ jobs:
28
steps:
29
- uses: actions/checkout@v4
30
- uses: dtolnay/rust-toolchain@stable
31
+ - name: set up PATH on Windows
32
+ # Needed to use GNU's patch.exe instead of Strawberry Perl patch
33
+ if: runner.os == 'Windows'
34
+ run: echo "C:\Program Files\Git\usr\bin" >> $env:GITHUB_PATH
35
- run: cargo test
36
37
fmt:
@@ -103,6 +107,10 @@ jobs:
103
107
104
108
- name: rust toolchain ~ install
105
109
uses: dtolnay/rust-toolchain@nightly
110
111
112
113
106
114
- name: Test
115
run: cargo test ${{ steps.vars.outputs.CARGO_FEATURES_OPTION }} --no-fail-fast
116
env:
0 commit comments