feat: add workflows for testing, linting, compiling

This commit is contained in:
2025-07-10 19:41:21 -05:00
parent 5af4e3b9b7
commit b5a8cf91f4
2 changed files with 143 additions and 0 deletions

22
.github/workflows/format.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: Format Check
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
format:
name: Format Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check formatting
run: cargo fmt --all -- --check