feat: proper CI tests

This commit is contained in:
Zachery Aaron Shores-Chmielewski 2026-02-16 13:19:02 +07:00
parent d5b4a51b51
commit d7aa833a32

14
.ci.yml
View file

@ -1,8 +1,16 @@
pipelines: pipelines:
smoke: ci:
triggers: triggers:
- event: push - event: push
branches: ["*"] branches: ["*"]
jobs: jobs:
hello: check:
run: echo "CI is alive" 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