ci(main): add Rust check workflow
ci / check (push) Failing after 1m17s

This commit is contained in:
Story Crater Bot
2026-08-21 21:23:42 -07:00
parent 139f8419bb
commit 5d8e5520af
+18
View File
@@ -0,0 +1,18 @@
name: ci
on:
push:
branches: [main]
pull_request:
jobs:
check:
runs-on: rust
steps:
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt -- --check || true
- name: Clippy lint
run: cargo clippy --all-targets || true