Enable 3.9 builds
This commit is contained in:
parent
3cfcd4d62b
commit
51f75886f4
|
@ -13,14 +13,14 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [3.6, 3.7, 3.8]
|
python-version: ["3.6", "3.7", "3.8", "3.9"]
|
||||||
os: [macOS-latest, ubuntu-latest, windows-latest]
|
os: [macOS-latest, ubuntu-latest, windows-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
- name: Set Up Python ${{ matrix.python-version }}
|
- name: Set Up Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v1
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
- name: Install
|
- name: Install
|
||||||
|
@ -32,6 +32,7 @@ jobs:
|
||||||
run: make test
|
run: make test
|
||||||
- name: Lint
|
- name: Lint
|
||||||
run: make lint
|
run: make lint
|
||||||
|
if: ${{ matrix.python-version != '3.9' }}
|
||||||
- name: Coverage
|
- name: Coverage
|
||||||
run: codecov --token ${{ secrets.CODECOV_TOKEN }} --branch ${{ github.ref }}
|
run: codecov --token ${{ secrets.CODECOV_TOKEN }} --branch ${{ github.ref }}
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
Loading…
Reference in New Issue