Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions .github/workflows/_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,19 @@ jobs:
id: setup_python
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
# Python cache is huge and saves little time, so disabled for now, until we have higher cache size limits
# cache: 'pip'

- run: rustup toolchain install stable --profile minimal

- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
key: rust-${{ matrix.platform.runner }}-${{ matrix.python-version }}
cache-targets: 'false'
cache-all-crates: 'false'
cache-workspace-crates: 'false'
# Disable Rust cache until we have higher cache size limits
# - name: Rust Cache
# uses: Swatinem/rust-cache@v2
# with:
# key: rust-${{ matrix.platform.runner }}-${{ matrix.python-version }}
# cache-targets: 'false'
# cache-all-crates: 'false'
# cache-workspace-crates: 'false'

- name: Rust tests (no default features)
run: cargo test --no-default-features --verbose
Expand Down
Loading