diff options
Diffstat (limited to '.github/workflows/testing.yml')
| -rw-r--r-- | .github/workflows/testing.yml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index e4994ea..09de330 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -12,12 +12,23 @@ jobs: - macos rust: - stable - - nightly + - nightly-2023-06-19 name: Test Rust ${{ matrix.rust }} on ${{ matrix.os }} runs-on: ${{ matrix.os }}-latest steps: - uses: actions/checkout@v2 + - uses: actions/cache@v2 + with: + path: | + ~/.cargo/registry + ~/.cargo/git + target + key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + - run: rm rust-toolchain.toml - uses: dtolnay/rust-toolchain@stable with: toolchain: ${{ matrix.rust }} + - uses: KyleMayes/install-llvm-action@v1 + with: + version: "15.0" - run: cargo test --all-features --no-fail-fast |
