Skip to content

Commit

Permalink
Update GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mwilliamson committed Mar 15, 2023
1 parent 8a2b0e0 commit c9a7b5b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Expand Up @@ -8,14 +8,14 @@ jobs:

strategy:
matrix:
python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, pypy2, pypy3]
python-version: ["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy2.7", "pypy3.9"]

steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -28,14 +28,14 @@ jobs:

strategy:
matrix:
python-version: [3.9]
python-version: ["3.9"]

steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down

0 comments on commit c9a7b5b

Please sign in to comment.