We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60d7081 commit 08b428dCopy full SHA for 08b428d
.github/workflows/_test.yml
@@ -7,7 +7,7 @@ env:
7
CARGO_TERM_COLOR: always
8
9
jobs:
10
- rust:
+ build-test:
11
strategy:
12
matrix:
13
python-version: [3.11, 3.13]
@@ -18,7 +18,9 @@ jobs:
18
19
- run: rustup toolchain install stable --profile minimal
20
- name: Rust Cache
21
- uses: Swatinem/[email protected]
+ uses: Swatinem/rust-cache@v2
22
+ with:
23
+ key: ${{ runner.os }}-rust-${{ matrix.python-version }}
24
- name: Rust build
25
run: cargo build --verbose
26
- name: Rust tests
.gitignore
@@ -14,9 +14,6 @@ dist/
14
15
.DS_Store
16
17
-# Lock files for dependencies should be ignored for library
-/Cargo.lock
-
*.egg-info/
# Output of `cocoindex eval`
0 commit comments