Skip to content

Commit

Permalink
Merge pull request python-trio#1742 from python-trio/ci_python_39
Browse files Browse the repository at this point in the history
add Python 3.9-rc to CI build
  • Loading branch information
oremanj authored Oct 1, 2020
2 parents 3a8a247 + 5b2d17d commit 8f26588
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ['3.6', '3.7', '3.8']
python: ['3.6', '3.7', '3.8', '3.9.0-rc.2']
arch: ['x86', 'x64']
lsp: ['']
lsp_extract_file: ['']
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: '${{ matrix.python }}'
architecture: '${{ matrix.arch }}'
Expand All @@ -59,7 +59,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ['3.6', '3.7', '3.8']
python: ['3.6', '3.7', '3.8', '3.9.0-rc.2']
check_formatting: ['0']
extra_name: ['']
include:
Expand All @@ -70,7 +70,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: '${{ matrix.python }}'
- name: Run tests
Expand All @@ -87,12 +87,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ['3.6', '3.7', '3.8']
python: ['3.6', '3.7', '3.8', '3.9.0-rc.2']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: '${{ matrix.python }}'
- name: Run tests
Expand Down

0 comments on commit 8f26588

Please sign in to comment.