51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '**/Cargo.toml'
|
|
- '**/Cargo.lock'
|
|
- '**/rust-toolchain.toml'
|
|
- '**.rs'
|
|
- .github/workflows/cargo-clippy.yml
|
|
pull_request:
|
|
paths:
|
|
- '**/Cargo.toml'
|
|
- '**/Cargo.lock'
|
|
- '**/rust-toolchain.toml'
|
|
- '**.rs'
|
|
- .github/workflows/cargo-clippy.yml
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
name: cargo clippy
|
|
jobs:
|
|
cargoclippy:
|
|
name: cargo clippy
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
dir: ['src/wasm-lib']
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: taiki-e/install-action@just
|
|
- name: Install latest rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
override: true
|
|
components: clippy
|
|
|
|
- name: Rust Cache
|
|
uses: Swatinem/rust-cache@v2.6.1
|
|
|
|
- name: Run clippy
|
|
run: |
|
|
cd "${{ matrix.dir }}"
|
|
just lint
|
|
# If this fails, run "cargo check" to update Cargo.lock,
|
|
# then add Cargo.lock to the PR.
|
|
- name: Check Cargo.lock doesn't need updating
|
|
run: |
|
|
cargo check --locked || echo "Pls run cargo check and commit the changed Cargo.lock"
|