Skip to content

Commit 8d264ed

Browse files
committed
Add test with Python 3.9 in CI, reformat workflow
1 parent 2d33aa2 commit 8d264ed

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
name: CI
22

3-
on: [push, pull_request]
3+
on:
4+
- push
5+
- pull_request
46

57
jobs:
68

79
build:
810

911
strategy:
1012
matrix:
11-
os: [ubuntu-20.04, macos-latest]
12-
python-version: [3.6, 3.7, 3.8]
13+
os:
14+
- ubuntu-20.04
15+
- macos-latest
16+
python-version:
17+
- "3.6"
18+
- "3.7"
19+
- "3.8"
20+
- "3.9"
1321

1422
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
1523
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)