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 dee50eaa4c - Show all commits

View file

@ -5,12 +5,12 @@ pipelines:
branches: ["*"]
jobs:
check:
run: cargo check --workspace
run: . ~/.cargo/env && cargo check --workspace
timeout: 600
clippy:
run: cargo clippy --workspace --all-targets -- -D warnings
run: . ~/.cargo/env && cargo clippy --workspace --all-targets -- -D warnings
timeout: 600
test:
needs: [check]
run: cargo xtask test essential
run: . ~/.cargo/env && cargo xtask test essential
timeout: 900