chore: update clippy workflow and fix leptosfmt version; remove unnec… #283
This file contains hidden or 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
| name: clippy | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - "extras" | |
| - ".rusty-hook.toml" | |
| - ".github/workflows/**.yml" | |
| - "**/Makefile.toml" | |
| - "README.md" | |
| jobs: | |
| fmt: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: 'recursive' | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: nightly-2024-02-12 | |
| target: wasm32-unknown-unknown | |
| override: true | |
| - name: Assurancing Rust fmt | |
| run: rustup component add rustfmt | |
| - uses: actions-rs/cargo@v1 | |
| with: | |
| command: fmt | |
| args: --all -- --check | |
| leptosfmt: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: nightly-2024-02-12 | |
| target: wasm32-unknown-unknown | |
| override: true | |
| - name: Cache .cargo and target | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo | |
| key: ${{ runner.os }}-cargo-leptos-${{ hashFiles('**/Cargo.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-cargo-leptos-${{ hashFiles('**/Cargo.lock') }} | |
| ${{ runner.os }}-cargo-leptos | |
| - name: Install LeptosFmt | |
| run: cargo install leptosfmt --version 0.1.33 | |
| - name: Check LeptosFmt | |
| run: leptosfmt --check . | |
| clippy: | |
| needs: [fmt, leptosfmt] | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: 'recursive' | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: nightly | |
| override: true | |
| components: clippy | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: cargo clippy | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: clippy | |
| args: --features=ssr,hydrate -- -D warnings |