Skip to content

Commit f281fcd

Browse files
committed
Update skel 2020-11-09
1 parent bf70245 commit f281fcd

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ on:
33
push:
44
branches:
55
- master
6+
- main
7+
- tmp-*
68
tags:
79
- v*
810
pull_request:
@@ -13,14 +15,14 @@ jobs:
1315
strategy:
1416
fail-fast: false
1517
matrix:
16-
python-version: [3.6, 3.7, 3.8]
18+
python-version: ["3.6", "3.7", "3.8", "3.9"]
1719
os: [macOS-latest, ubuntu-latest, windows-latest]
1820

1921
steps:
2022
- name: Checkout
2123
uses: actions/checkout@v1
2224
- name: Set Up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v1
25+
uses: actions/setup-python@v2
2426
with:
2527
python-version: ${{ matrix.python-version }}
2628
- name: Install
@@ -32,6 +34,7 @@ jobs:
3234
run: make test
3335
- name: Lint
3436
run: make lint
37+
if: ${{ matrix.python-version != '3.9' }}
3538
- name: Coverage
3639
run: codecov --token ${{ secrets.CODECOV_TOKEN }} --branch ${{ github.ref }}
3740
continue-on-error: true

0 commit comments

Comments
 (0)