diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ad6849c0..41b1e089 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,6 +21,22 @@ jobs: - name: Test run: make test + test-temp-no-cache: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: + - ubuntu-latest + - macos-latest + - windows-latest + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@master + with: + toolchain: stable + - name: Test + run: make test + test-stable: name: Test on 1.61.0 runs-on: ubuntu-latest