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 84adcfd commit 7953fadCopy full SHA for 7953fad
.github/workflows/cicd.yml
@@ -46,6 +46,11 @@ jobs:
46
ES_JAVA_OPTS: -Xms512m -Xmx1g
47
ports:
48
- 9400:9400
49
+ strategy:
50
+ matrix:
51
+ python-version: [ "3.8", "3.9", "3.10" ]
52
+
53
+ name: Python ${{ matrix.python-version }} testing
54
55
steps:
56
- name: Check out repository code
@@ -55,8 +60,7 @@ jobs:
60
- name: Setup Python
61
uses: actions/setup-python@v3
57
62
with:
58
- python-version: "3.10"
59
-
63
+ python-version: ${{ matrix.python-version }}
64
- name: Lint code
65
uses: pre-commit/action@v2.0.3
66
0 commit comments