Skip to content

Commit a66dfe8

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

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ name: CI Workflow
22

33
on: [pull_request, workflow_dispatch]
44

5+
env:
6+
OPTIONAL_PYTHON_VERSIONS: '["3.8"]' # new services will support >= python 3.9
7+
58
jobs:
69
main:
710
name: CI
11+
continue-on-error: ${{ contains(fromJson(env.OPTIONAL_PYTHON_VERSIONS), matrix.python-version) }}
812
strategy:
913
matrix:
1014
os: [ubuntu-latest, macos-latest]

0 commit comments

Comments
 (0)