Skip to content

Commit

Permalink
remove actions-rs as it is not maintained
Browse files Browse the repository at this point in the history
  • Loading branch information
nrxus committed Aug 15, 2023
1 parent 65ab973 commit 4fb5885
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,20 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: build
run: cargo build --verbose
- name: test
run: cargo test --verbose
- name: test --release
run: cargo test --release --verbose
- uses: actions/checkout@v3
# LATEST STABLE
- uses: dtolnay/rust-toolchain@stable
- name: build stable
run: cargo +stable build --verbose
- name: test stable
run: cargo +stable test --verbose
- name: test stable --release
run: cargo +stable test --release --verbose
# MSRV
- uses: dtolnay/rust-toolchain@1.56.1
- name: build MSRV
run: cargo +1.56.1 build --verbose
- name: test MSRV
run: cargo +1.56.1 test --verbose
- name: test MSRV --release
run: cargo +1.56.1 test --release --verbose

0 comments on commit 4fb5885

Please sign in to comment.