Formatting and CI
Some checks failed
CI / check (push) Failing after 10s

This commit is contained in:
Connor Johnstone
2026-03-18 15:37:30 -04:00
parent 1b7c10ea9e
commit 82c82ae46a
16 changed files with 154 additions and 27 deletions

21
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,21 @@
name: CI
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --check
- run: cargo clippy --workspace -- -D warnings
- run: cargo build --workspace
- run: cargo test --workspace