Skip to content

Commit

Permalink
Merge pull request #55 from AndreMiras/feature/fix_tests_workflow_file
Browse files Browse the repository at this point in the history
🐛 Fix workflow file regression
  • Loading branch information
amitdev authored Nov 2, 2023
2 parents 1487017 + 82fefbb commit e68d991
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,22 @@ name: Tests

on: [push, pull_request]

env:
PYTHON_VERSIONS: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8", "pypy-3.9", "pypy-3.10"]

jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
python: ${{fromJson(env.PYTHON_VERSIONS)}}
python:
[
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"pypy-3.8",
"pypy-3.9",
"pypy-3.10",
]

steps:
- uses: actions/checkout@v4
Expand All @@ -24,7 +31,17 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python: ${{fromJson(env.PYTHON_VERSIONS)}}
python:
[
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"pypy-3.8",
"pypy-3.9",
"pypy-3.10",
]

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit e68d991

Please sign in to comment.