Skip to content

Commit d551e39

Browse files
author
hhsecond
committed
workflow
1 parent eb01870 commit d551e39

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: ["master"]
6+
pull_request:
7+
8+
jobs:
9+
tests:
10+
name: "Python ${{ matrix.python-version }}"
11+
runs-on: "ubuntu-latest"
12+
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
python-version: ["3.7", "3.8", "3.9"]
17+
18+
steps:
19+
- uses: "actions/checkout@v2"
20+
- uses: "actions/setup-python@v2"
21+
with:
22+
python-version: ${{ matrix.python-version }}

0 commit comments

Comments
 (0)