Skip to content

Commit 0985543

Browse files
committed
another yet fix
1 parent 1564d78 commit 0985543

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/main.yml

+13-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,23 @@ env:
66
PYTHON_VERSIONS: '[ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]'
77

88
jobs:
9+
10+
set-matrix:
11+
runs-on: ubuntu-latest
12+
outputs:
13+
python_versions: ${{ env.PYTHON_VERSIONS }} # Pass the env variable as an output
14+
steps:
15+
- name: Export PYTHON_VERSIONS
16+
run: echo "PYTHON_VERSIONS=$PYTHON_VERSIONS" >> $GITHUB_ENV
17+
918
static:
1019
name: Automated Static analysis on Python ${{ matrix.python-version }}
1120
runs-on: ubuntu-latest
21+
needs: set-matrix
1222
continue-on-error: true
1323
strategy:
1424
matrix:
15-
python-version: ${{ fromJSON(env.PYTHON_VERSIONS) }}
25+
python-version: ${{ fromJSON(needs.set-matrix.outputs.python_versions) }}
1626

1727
steps:
1828
- uses: actions/checkout@v2
@@ -31,10 +41,11 @@ jobs:
3141
test:
3242
name: Automated Testing on Python ${{ matrix.python-version }}
3343
runs-on: ubuntu-latest
44+
needs: set-matrix
3445
continue-on-error: true
3546
strategy:
3647
matrix:
37-
python-version: ${{ fromJSON(env.PYTHON_VERSIONS) }}
48+
python-version: ${{ fromJSON(needs.set-matrix.outputs.python_versions) }}
3849

3950
steps:
4051
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)