Getting ready for v0.1.0

This commit is contained in:
Alexander Kiselev
2026-01-26 16:04:00 -08:00
parent 3cb63d1953
commit 76fde9c3f7
73 changed files with 2709 additions and 1038 deletions
+32
View File
@@ -0,0 +1,32 @@
name: Lint
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check formatting
run: cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Clippy
run: cargo clippy -- -D warnings