Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

Commit 2402560

Browse files
update push workflow again
1 parent c19c4a5 commit 2402560

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

.github/workflows/push.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,20 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
pyVersion: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
19-
with:
20-
os: ubuntu-latest
21-
pyVersion: ${{ matrix.pyVersion }}
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v4
23+
24+
- name: Unshallow
25+
run: git fetch --prune --unshallow
26+
27+
- uses: actions/setup-python@v5
28+
with:
29+
python-version: ${{ matrix.pyVersion }}
30+
31+
- name: Run tests
32+
run: make dev install test
2233

2334
fmt:
2435
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)