Skip to content

Checks

Checks #3053

Workflow file for this run

name: Checks
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
components: rustfmt
toolchain: nightly
override: true
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check