We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47261c7 commit d50b9daCopy full SHA for d50b9da
1 file changed
.github/workflows/ci.yaml
@@ -19,19 +19,22 @@ jobs:
19
20
lint-checks:
21
needs: pre_job
22
- name: Make requirements and lint check on Python3.10
+ name: Make requirements and lint checks
23
runs-on: ubuntu-22.04
24
+ strategy:
25
+ matrix:
26
+ python-version: ["3.8", "3.9", "3.10", "3.11"]
27
steps:
28
- name: Checkout st2tests repository
29
uses: actions/checkout@v2
30
- name: Checkout st2 repository
31
32
with:
33
repository: "StackStorm/st2"
- - name: Set up Python3.10
34
+ - name: "Set up Python ${{ matrix.python-version }}"
35
uses: actions/setup-python@v4
36
- python-version: '3.10.12'
37
+ python-version: "${{ matrix.python-version }}"
38
- name: Install apt dependencies
39
run: |
40
sudo apt install -y libldap2-dev libsasl2-dev
0 commit comments