-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,22 +48,22 @@ jobs: | |
- name: Run cargo test | ||
run: cargo test -- --test-threads 1 | ||
|
||
test_msrv: | ||
name: Test Suite (for MSRV) | ||
msrv: | ||
name: Build for MSRV | ||
runs-on: ubuntu-latest | ||
env: | ||
RUSTFLAGS: "-D warnings" | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install stable toolchain | ||
- name: Install MSRV toolchain | ||
uses: dtolnay/[email protected] | ||
|
||
#- uses: Swatinem/rust-cache@v1 | ||
|
||
- name: Run cargo test | ||
run: cargo test -- --test-threads 1 | ||
- name: Run cargo build | ||
run: cargo build | ||
|
||
lints: | ||
name: Lints | ||
|
@@ -132,7 +132,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
environment: production | ||
if: github.event_name == 'release' | ||
needs: [build, test, lints, docs, leaks] | ||
needs: [build, test, msrv, lints, docs, leaks] | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters