Skip to content

Commit

Permalink
Merge pull request #416 from matthiasbeyer/no-actions-rs
Browse files Browse the repository at this point in the history
Replace actions-rs with run scripts
  • Loading branch information
matthiasbeyer committed Jan 19, 2023
2 parents 9a1c74d + 24b6031 commit f12b93f
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit f12b93f

Please sign in to comment.