feat: proper CI tests

This commit is contained in:
Zachery Aaron Shores-Chmielewski 2026-02-16 13:19:02 +07:00
parent 40c4d27249
commit 868de7df64

14
.ci.yml
View file

@ -1,8 +1,16 @@
pipelines:
smoke:
ci:
triggers:
- event: push
branches: ["*"]
jobs:
hello:
run: echo "CI is alive"
check:
run: cargo check --workspace
timeout: 600
clippy:
run: cargo clippy --workspace --all-targets -- -D warnings
timeout: 600
test:
needs: [check]
run: cargo xtask test essential
timeout: 900