Skip to content

chore(deps): bump dtolnay/rust-toolchain from 0e66bd3e6b38ec0ad5312288c83e47c143e6b09e to 1482605bfc5719782e1267fd0c0cc350fe7646b8 #450

chore(deps): bump dtolnay/rust-toolchain from 0e66bd3e6b38ec0ad5312288c83e47c143e6b09e to 1482605bfc5719782e1267fd0c0cc350fe7646b8

chore(deps): bump dtolnay/rust-toolchain from 0e66bd3e6b38ec0ad5312288c83e47c143e6b09e to 1482605bfc5719782e1267fd0c0cc350fe7646b8 #450

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8
with:
toolchain: stable
- run: cargo check
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8
with:
toolchain: stable
- run: cargo test
fmt:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8
with:
toolchain: stable
components: rustfmt
- run: cargo fmt --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8
with:
toolchain: stable
components: clippy
- run: cargo clippy -- -D warnings