Files
Main/.gitea/workflows/ci.yml
Connor Johnstone efec51141e
All checks were successful
CI / check (push) Successful in 1m8s
Continuing to work through CI
2026-03-19 12:18:00 -04:00

29 lines
692 B
YAML

name: CI
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITEA }}
- name: Configure git to use HTTPS for submodules
run: |
git config --global url."https://${{ secrets.GITEA }}@git.rcjohnstone.com/".insteadOf "ssh://connor@git.rcjohnstone.com:2222/"
git submodule update --init --recursive
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- run: cargo fmt --check
- run: cargo clippy --workspace -- -D warnings
- run: cargo build --workspace
- run: cargo test --workspace