Skip to content

Commit 25e537f

Browse files
authored
Merge pull request #267 from cclauss/patch-1
GitHub Action: Test current Python and Actions
2 parents e5ff378 + ee10fc2 commit 25e537f

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python: ["2.7", "3.5", "3.6", "3.7", "3.8", "pypy3"]
13+
python: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "pypy3"]
1414
os: [ubuntu-latest, windows-latest]
1515
include:
1616
- python: "2.7"
@@ -23,13 +23,15 @@ jobs:
2323
tox_env: "py37-pytest30"
2424
- python: "3.8"
2525
tox_env: "py38-pytest30"
26+
- python: "3.9"
27+
tox_env: "py39-pytest30"
2628
- python: "pypy3"
2729
tox_env: "pypy3-pytest30"
2830

2931
steps:
30-
- uses: actions/checkout@v1
32+
- uses: actions/checkout@v2
3133
- name: Set up Python
32-
uses: actions/setup-python@v1
34+
uses: actions/setup-python@v2
3335
with:
3436
python-version: ${{ matrix.python }}
3537
- name: Install tox
@@ -49,9 +51,9 @@ jobs:
4951
needs: build
5052

5153
steps:
52-
- uses: actions/checkout@v1
54+
- uses: actions/checkout@v2
5355
- name: Set up Python
54-
uses: actions/setup-python@v1
56+
uses: actions/setup-python@v2
5557
with:
5658
python-version: "3.7"
5759
- name: Install wheel

0 commit comments

Comments
 (0)