mvp ci workflow #42
1 changed files with 11 additions and 3 deletions
14
.ci.yml
14
.ci.yml
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue