Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ jobs:
REDIS_URL: redis://localhost:6379
run: |
uv run pytest tests/ -m "not slow" \
--ignore=tests/fuzzing \
--cov=src/cachekit \
--cov-report=xml \
--cov-report=term \
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/security-deep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
enable-cache: true

- name: Set up Python
run: uv python install 3.12
run: uv python install 3.11

- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
Expand All @@ -111,9 +111,9 @@ jobs:
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-py3.12-${{ hashFiles('**/pyproject.toml', '**/uv.lock') }}
key: venv-${{ runner.os }}-py3.11-${{ hashFiles('**/pyproject.toml', '**/uv.lock') }}
restore-keys: |
venv-${{ runner.os }}-py3.12-
venv-${{ runner.os }}-py3.11-

- name: Install dependencies
run: |
Expand Down Expand Up @@ -183,8 +183,8 @@ jobs:
rustup toolchain install nightly
rustup default nightly

- name: Add source for MSan
if: matrix.sanitizer == 'memory'
- name: Add source for sanitizers
if: matrix.sanitizer == 'memory' || matrix.sanitizer == 'thread'
run: rustup component add rust-src --toolchain nightly

- name: Cache Rust dependencies
Expand All @@ -210,7 +210,7 @@ jobs:
run: |
cd rust
cargo +nightly test --lib --target x86_64-unknown-linux-gnu \
--no-default-features --features compression,checksum,messagepack,encryption
-Zbuild-std --no-default-features --features compression,checksum,messagepack,encryption

- name: Run MemorySanitizer
if: matrix.sanitizer == 'memory'
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading