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

Commit 775583e

Browse files
[Fix] update push config
1 parent 166e30d commit 775583e

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/push.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,32 +10,32 @@ on:
1010
- main
1111

1212
jobs:
13-
tests:
13+
tests-ubuntu:
14+
uses: ./.github/workflows/test.yml
1415
strategy:
1516
fail-fast: false
1617
matrix:
1718
pyVersion: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
18-
runs-on: ubuntu-latest
19-
steps:
20-
- name: Checkout
21-
uses: actions/checkout@v4
22-
23-
- name: Unshallow
24-
run: git fetch --prune --unshallow
25-
26-
- uses: actions/setup-python@v5
27-
with:
28-
python-version: ${{ matrix.pyVersion }}
29-
30-
- name: Run tests
31-
run: make dev install test
32-
19+
with:
20+
os: ubuntu-latest
21+
pyVersion: ${{ matrix.pyVersion }}
22+
23+
tests-windows:
24+
uses: ./.github/workflows/test.yml
25+
strategy:
26+
fail-fast: false
27+
matrix:
28+
pyVersion: [ '3.9', '3.10', '3.11', '3.12' ]
29+
with:
30+
os: windows-latest
31+
pyVersion: ${{ matrix.pyVersion }}
32+
3333
fmt:
3434
runs-on: ubuntu-latest
3535

3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v2
3939

4040
- name: Format all files
4141
run: make dev fmt

0 commit comments

Comments
 (0)