mvp ci workflow #42

Merged
zacheryasc merged 16 commits from spot-instance into master 2026-02-16 15:57:56 +00:00
Showing only changes of commit d7aa833a32 - Show all commits

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