Skip to content

Commit 24b6031

Browse files
committed
Replace actions-rs with run scripts
When we switched from actions-rs to dtolnay, we did not convert the cargo calls in the workflow. This patch fixes this. Signed-off-by: Matthias Beyer <[email protected]>
1 parent 9a1c74d commit 24b6031

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

.github/workflows/msrv.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,12 @@ jobs:
2525

2626
- name: Run cargo check
2727
if: matrix.rust != 'nightly'
28-
uses: actions-rs/cargo@v1
29-
with:
30-
command: check
28+
run: cargo check --all-features
3129

3230
- name: Run cargo check (nightly)
3331
if: matrix.rust == 'nightly'
3432
continue-on-error: true
35-
uses: actions-rs/cargo@v1
36-
with:
37-
command: check
33+
run: cargo check --all-features
3834

3935
test:
4036
needs: [check]
@@ -68,10 +64,7 @@ jobs:
6864
- name: Run cargo test (nightly)
6965
if: matrix.rust == 'nightly'
7066
continue-on-error: true
71-
uses: actions-rs/cargo@v1
72-
with:
73-
command: test
74-
args: --all-features
67+
run: cargo test --all-features
7568

7669
fmt:
7770
needs: [check]

0 commit comments

Comments
 (0)