From 1e07fb6991b10f2d5f864c49a6fb73903082ca8b Mon Sep 17 00:00:00 2001 From: Bjerg Date: Thu, 29 Sep 2022 16:52:20 +0200 Subject: [PATCH] ci: move gh workflow to correct folder (#5) * ci: move gh workflow to correct folder * ci: name workflow * ci: use nextest --- .github/{ => workflows}/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) rename .github/{ => workflows}/ci.yml (81%) diff --git a/.github/ci.yml b/.github/workflows/ci.yml similarity index 81% rename from .github/ci.yml rename to .github/workflows/ci.yml index 44bb99e2f..2437c266d 100644 --- a/.github/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 @@ -23,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