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