-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update GH actions images to supported versions (#534)
- Loading branch information
1 parent
1e09176
commit a659c07
Showing
4 changed files
with
25 additions
and
205 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
on: [push, pull_request] | ||
|
||
name: check | ||
|
||
jobs: | ||
stable: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
components: clippy, rustfmt | ||
- run: cargo fmt --all -- --check | ||
- run: cargo clippy --all-features -- -D warnings | ||
- run: cargo test --all-features | ||
nightly: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
with: | ||
components: clippy, rustfmt | ||
- run: cargo fmt --all -- --check | ||
- run: cargo clippy --all-features -- -D warnings | ||
- run: cargo test --all-features |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.