pipelines: ci: triggers: - event: push branches: ["*"] jobs: check: run: . ~/.cargo/env && cargo check --workspace timeout: 600 clippy: run: . ~/.cargo/env && cargo clippy --workspace --all-targets -- -D warnings timeout: 600 test: needs: [check] run: . ~/.cargo/env && cargo xtask test essential timeout: 900