From bf069c5f9fefafeb39daa423fc3afbab960c8ed0 Mon Sep 17 00:00:00 2001 From: Oliver Nordbjerg Date: Thu, 29 Sep 2022 14:41:49 +0200 Subject: [PATCH 1/3] ci: move gh workflow to correct folder --- .github/{ => workflows}/ci.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{ => workflows}/ci.yml (100%) diff --git a/.github/ci.yml b/.github/workflows/ci.yml similarity index 100% rename from .github/ci.yml rename to .github/workflows/ci.yml From 11159a41cdc7d2d00e385141bdf32981f6248e77 Mon Sep 17 00:00:00 2001 From: Bjerg Date: Thu, 29 Sep 2022 14:52:41 +0200 Subject: [PATCH 2/3] ci: name workflow --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44bb99e2fb1..0d7c8640e2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,7 @@ env: NEXTEST_EXPERIMENTAL_FILTER_EXPR: 1 CARGO_TERM_COLOR: always +name: ci jobs: test: runs-on: ubuntu-latest From 10ada72afbc848e96fe21d1d27beb30d073b8771 Mon Sep 17 00:00:00 2001 From: Oliver Nordbjerg Date: Thu, 29 Sep 2022 15:34:44 +0200 Subject: [PATCH 3/3] ci: use nextest --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d7c8640e2e..2437c266d6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,8 +24,13 @@ jobs: - uses: Swatinem/rust-cache@v1 with: cache-on-failure: true - - name: cargo test - run: cargo test --locked --workspace --all-features + - name: Install latest nextest release + uses: taiki-e/install-action@nextest + - name: Test with latest nextest release + uses: actions-rs/cargo@v1 + with: + command: nextest + args: run --locked --workspace --all-features lint: runs-on: ubuntu-latest