summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-01-19 09:31:34 +0100
committerGitHub <noreply@github.com>2023-01-19 09:31:34 +0100
commitf12b93fb949557dd41cbe870179eb9afbb4c3769 (patch)
tree53427410dde5570330a60670fa0d06cc03922fce
parent9a1c74ddf7763566b71049877c047a6545aa59c6 (diff)
parent24b6031d5a58137d80ff97bb1bb024159a63b950 (diff)
Merge pull request #416 from matthiasbeyer/no-actions-rs
Replace actions-rs with run scripts
-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]