Skip to content

Commit 899b6dc

Browse files
committed
fix: ci optional run for python 3.8
1 parent efb58df commit 899b6dc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,16 @@ on: [pull_request, workflow_dispatch]
55
jobs:
66
main:
77
name: CI
8+
continue-on-error: ${{ matrix.optional }}
89
strategy:
910
matrix:
1011
os: [ubuntu-latest, macos-latest]
11-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
13+
optional: [false]
14+
include:
15+
- os: [ubuntu-latest, macos-latest]
16+
python-version: "3.8"
17+
optional: true
1218
runs-on: ${{ matrix.os }}
1319
steps:
1420
- name: Checkout

0 commit comments

Comments
 (0)