Skip to content

Update dependencies #250

Update dependencies

Update dependencies #250

Workflow file for this run

name: Lint and check formatting
on: [push, pull_request]
jobs:
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: rustup component add rustfmt
- run: cargo fmt --all --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: rustup component add clippy
- run: cargo clippy -- -D warnings