mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-06 15:27:28 +00:00
[CI] Reorder steps again and change some steps names
This commit is contained in:
parent
3fd3c7aa5b
commit
6486c1e17b
1 changed files with 11 additions and 9 deletions
20
.github/workflows/ci.yml
vendored
20
.github/workflows/ci.yml
vendored
|
|
@ -21,6 +21,17 @@ jobs:
|
|||
run: cargo check --verbose
|
||||
- name: Run Tests
|
||||
run: cargo test --verbose
|
||||
- name: Install Formatting nightly
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: nightly
|
||||
components: rustfmt
|
||||
- name: Run Formatting check
|
||||
run: cargo +nightly fmt --check --verbose
|
||||
- name: Install Audit
|
||||
run: cargo install cargo-audit
|
||||
- name: Run Audit
|
||||
run: cargo audit --deny warnings
|
||||
- name: Install MSRV
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
|
|
@ -28,12 +39,3 @@ jobs:
|
|||
override: true
|
||||
- name: Run MSRV
|
||||
run: cargo build
|
||||
- name: Install nightly
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: nightly
|
||||
components: rustfmt
|
||||
- name: Run formatting check
|
||||
run: cargo +nightly fmt --check --verbose
|
||||
- name: Run audit
|
||||
run: cargo audit --deny warnings
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue