Skip to content

Commit 795e88c

Browse files
committed
fix: ci optional run for python 3.8
1 parent efb58df commit 795e88c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ 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+
- python-version: "3.8"
16+
optional: true
1217
runs-on: ${{ matrix.os }}
1318
steps:
1419
- name: Checkout

0 commit comments

Comments
 (0)