Skip to content

Commit e7948f8

Browse files
committed
fix: adjust workflow
1 parent ed12924 commit e7948f8

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/_test.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v4
1818

19+
- uses: actions/setup-python@v5
20+
id: setup_python
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
cache: 'pip'
24+
1925
- run: rustup toolchain install stable --profile minimal
2026
- name: Rust Cache
2127
uses: Swatinem/rust-cache@v2
@@ -26,11 +32,6 @@ jobs:
2632
- name: Rust tests
2733
run: cargo test --verbose
2834

29-
- uses: actions/setup-python@v5
30-
id: setup_python
31-
with:
32-
python-version: ${{ matrix.python-version }}
33-
cache: 'pip'
3435
- uses: actions/cache@v4
3536
with:
3637
path: .venv

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
uses: PyO3/maturin-action@v1
4848
with:
4949
target: ${{ matrix.platform.target }}
50-
args: --release --out dist --find-interpreter
50+
args: --release --out dist
5151
sccache: 'true'
5252
manylinux: auto
5353
container: ${{ matrix.platform.container }}

0 commit comments

Comments
 (0)