We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efb58df commit a66dfe8Copy full SHA for a66dfe8
.github/workflows/ci.yaml
@@ -2,9 +2,13 @@ name: CI Workflow
2
3
on: [pull_request, workflow_dispatch]
4
5
+env:
6
+ OPTIONAL_PYTHON_VERSIONS: '["3.8"]' # new services will support >= python 3.9
7
+
8
jobs:
9
main:
10
name: CI
11
+ continue-on-error: ${{ contains(fromJson(env.OPTIONAL_PYTHON_VERSIONS), matrix.python-version) }}
12
strategy:
13
matrix:
14
os: [ubuntu-latest, macos-latest]
0 commit comments