Skip to content

Commit e68d991

Browse files
authored
Merge pull request amitdev#55 from AndreMiras/feature/fix_tests_workflow_file
🐛 Fix workflow file regression
2 parents 1487017 + 82fefbb commit e68d991

File tree

1 file changed

+22
-5
lines changed

1 file changed

+22
-5
lines changed

.github/workflows/tests.yml

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,22 @@ name: Tests
22

33
on: [push, pull_request]
44

5-
env:
6-
PYTHON_VERSIONS: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8", "pypy-3.9", "pypy-3.10"]
7-
85
jobs:
96
test:
107
runs-on: ubuntu-22.04
118
strategy:
129
matrix:
13-
python: ${{fromJson(env.PYTHON_VERSIONS)}}
10+
python:
11+
[
12+
"3.8",
13+
"3.9",
14+
"3.10",
15+
"3.11",
16+
"3.12",
17+
"pypy-3.8",
18+
"pypy-3.9",
19+
"pypy-3.10",
20+
]
1421

1522
steps:
1623
- uses: actions/checkout@v4
@@ -24,7 +31,17 @@ jobs:
2431
runs-on: ubuntu-22.04
2532
strategy:
2633
matrix:
27-
python: ${{fromJson(env.PYTHON_VERSIONS)}}
34+
python:
35+
[
36+
"3.8",
37+
"3.9",
38+
"3.10",
39+
"3.11",
40+
"3.12",
41+
"pypy-3.8",
42+
"pypy-3.9",
43+
"pypy-3.10",
44+
]
2845

2946
steps:
3047
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)