Skip to content

chore: version bump

chore: version bump #7

Workflow file for this run

name: lint
on:
push:
branches: [ "main" ]
pull_request:
paths:
- "Cargo.*"
- "**/*.rs"
- ".github/workflows/*.yml"
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Check formatting
run: cargo fmt --all -- --check
- name: Lint
run: cargo clippy