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