Skip to content

Bump stefanzweifel/git-auto-commit-action from 4.16.0 to 5.0.1 #44

Bump stefanzweifel/git-auto-commit-action from 4.16.0 to 5.0.1

Bump stefanzweifel/git-auto-commit-action from 4.16.0 to 5.0.1 #44

Workflow file for this run

name: PR Checks
permissions:
contents: read
on:
pull_request:
jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/[email protected]
with:
toolchain: nightly
profile: minimal
components: clippy
- run: cat CI.toml >> Cargo.toml
- run: cargo +nightly clippy --workspace --locked --no-default-features
- run: cargo +nightly clippy --workspace --locked
- run: cargo +nightly clippy --workspace --locked --all-features
fmt:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/[email protected]
with:
toolchain: nightly
profile: minimal
components: rustfmt
- run: cat CI.toml >> Cargo.toml
- run: cargo +nightly fmt --all -- --check