summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-01-19 09:25:05 +0100
committerMatthias Beyer <mail@beyermatthias.de>2023-01-19 09:25:06 +0100
commit24b6031d5a58137d80ff97bb1bb024159a63b950 (patch)
tree53427410dde5570330a60670fa0d06cc03922fce
parent9a1c74ddf7763566b71049877c047a6545aa59c6 (diff)
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 <mail@beyermatthias.de>
-rw-r--r--.github/workflows/msrv.yml13
1 files changed, 3 insertions, 10 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index 8a69ae5..e4ef15c 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -25,16 +25,12 @@ jobs:
- name: Run cargo check
if: matrix.rust != 'nightly'
- uses: actions-rs/cargo@v1
- with:
- command: check
+ run: cargo check --all-features
- name: Run cargo check (nightly)
if: matrix.rust == 'nightly'
continue-on-error: true
- uses: actions-rs/cargo@v1
- with:
- command: check
+ run: cargo check --all-features
test:
needs: [check]
@@ -68,10 +64,7 @@ jobs:
- name: Run cargo test (nightly)
if: matrix.rust == 'nightly'
continue-on-error: true
- uses: actions-rs/cargo@v1
- with:
- command: test
- args: --all-features
+ run: cargo test --all-features
fmt:
needs: [check]