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