Files
Main/.gitea/workflows/ci.yml
Connor Johnstone f837156fcc
Some checks failed
CI / check (push) Failing after 12s
Added docker/compose stuff and hopefully fixed CI
2026-03-19 12:12:50 -04:00

25 lines
528 B
YAML

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