Skip to content

Commit 44ecf83

Browse files
committed
chore: improve the stability of CI testing
1 parent ed1f04e commit 44ecf83

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ jobs:
1010
test-unit:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
os: [ubuntu-latest, macos-latest, windows-latest]
15-
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
16+
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]
1617

1718
steps:
1819
- uses: actions/checkout@v3
@@ -35,9 +36,10 @@ jobs:
3536
test-browser:
3637
runs-on: ${{ matrix.os }}
3738
strategy:
39+
fail-fast: false
3840
matrix:
3941
os: [ubuntu-latest, macos-latest, windows-latest]
40-
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
42+
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]
4143

4244
steps:
4345
- uses: actions/checkout@v3
@@ -89,7 +91,7 @@ jobs:
8991
- name: Set up Python
9092
uses: actions/setup-python@v4
9193
with:
92-
python-version: "3.10"
94+
python-version: 3.10
9395

9496
- name: Install dependencies
9597
run: |

0 commit comments

Comments
 (0)