Skip to content

Commit

Permalink
Update GH actions images to supported versions (#534)
Browse files Browse the repository at this point in the history
  • Loading branch information
shanemadden authored Aug 19, 2024
1 parent 1e09176 commit a659c07
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 205 deletions.
42 changes: 0 additions & 42 deletions .github/workflows/build.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/check.yml
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
74 changes: 0 additions & 74 deletions .github/workflows/lint.yml

This file was deleted.

89 changes: 0 additions & 89 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit a659c07

Please sign in to comment.