Disable rust-cache in CI (#372)

master
Caleb Hattingh 2024-10-16 18:36:12 +02:00 committed by GitHub
parent 80a1c60aab
commit d87ba998ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ jobs:
UNSAFE_PYO3_SKIP_VERSION_CHECK: ${{ matrix.unsafe-pyo3-skip-version-check }} UNSAFE_PYO3_SKIP_VERSION_CHECK: ${{ matrix.unsafe-pyo3-skip-version-check }}
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest, windows-2019] os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.12"] python-version: ["3.12"]
allow-prereleases: [false] allow-prereleases: [false]
unsafe-pyo3-skip-version-check: [0] unsafe-pyo3-skip-version-check: [0]
@ -99,6 +99,6 @@ jobs:
with: with:
toolchain: "stable" toolchain: "stable"
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # 2.7.3 #- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # 2.7.3
- run: python3 -m pip install nox - run: python -m pip install nox
- run: nox -s test-${{ matrix.python-version }} - run: nox -s test-${{ matrix.python-version }}