diff --git a/.ci.yml b/.ci.yml index 9a1f00c..d8458e2 100644 --- a/.ci.yml +++ b/.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