From 3cc1487a4aa070945bab60c806d2ad9392cdaa37 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Mon, 22 Nov 2021 23:25:22 +0000 Subject: [PATCH] fix non-linux ci --- .cargo/config.toml | 1 - .github/workflows/ci.yml | 8 ++------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 8749b7316..9853b69e9 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,5 +1,4 @@ [alias] -chk = "check --workspace --all-features --tests --examples --bins" lint = "clippy --workspace --tests --examples --bins -- -Dclippy::todo" ci-min = "hack check --workspace --no-default-features" ci-check-min-tests = "hack check --workspace --no-default-features --tests --examples" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26aff4b0f..6a79657ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -140,15 +140,11 @@ jobs: - name: check minimal + tests uses: actions-rs/cargo@v1 - with: { command: ci-min-test } + with: { command: ci-check-min-tests } - name: check default uses: actions-rs/cargo@v1 - with: { command: ci-default } - - - name: check full - uses: actions-rs/cargo@v1 - with: { command: ci-full } + with: { command: ci-check } - name: tests uses: actions-rs/cargo@v1