aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/linting.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/linting.yml')
-rw-r--r--.github/workflows/linting.yml28
1 files changed, 23 insertions, 5 deletions
diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml
index 685b93a..473f58f 100644
--- a/.github/workflows/linting.yml
+++ b/.github/workflows/linting.yml
@@ -6,7 +6,8 @@ jobs:
name: Dependency linting
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
+ - run: rm rust-toolchain.toml
- uses: EmbarkStudios/cargo-deny-action@v1
with:
arguments: --all-features
@@ -15,19 +16,36 @@ jobs:
name: Code linting
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
+ - run: rm rust-toolchain.toml
+
+ # Cache files like by target directory
+ - uses: actions/cache@v3
+ with:
+ path: |
+ ~/.cargo/registry
+ ~/.cargo/git
+ target
+ key: ${{ runner.os }}-rustc-nightly-2023-06-19-cargo-${{ hashFiles('**/Cargo.lock') }}-linting
+
+ # Prepare toolchain related stuff
- uses: dtolnay/rust-toolchain@stable
with:
- toolchain: nightly
+ toolchain: nightly-2023-06-19
components: clippy, rust-src
+ - uses: KyleMayes/install-llvm-action@v1
+ with:
+ version: "15.0"
+
- run: cargo clippy --all-features -- --deny warnings
code-format:
name: Check formatting
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
+ - run: rm rust-toolchain.toml
- uses: dtolnay/rust-toolchain@stable
with:
- toolchain: nightly
+ toolchain: nightly-2023-06-19
components: rustfmt, rust-src
- run: cargo fmt -- --check