swactor/.ci.yml

16 lines
354 B
YAML

pipelines:
ci:
triggers:
- event: push
branches: ["*"]
jobs:
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