Skip to content

Update actions/cache action to v6 #113

Update actions/cache action to v6

Update actions/cache action to v6 #113

Workflow file for this run

name: formatting
on:
pull_request:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.69.0
components: rustfmt
- name: cargo fmt
run: cargo fmt --all -- --check
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.84.0
components: clippy
- run: cargo clippy -- --deny warnings