Skip to content

Commit c6dc60b

Browse files
committed
Update actions and target version list
1 parent a4d5543 commit c6dc60b

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/build.yml

+13-4
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ on:
88
pull_request:
99

1010
jobs:
11-
aiosqlite:
11+
test:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
16+
python-version: ["3.7", "3.8"]
1717
os: [macOS-latest, ubuntu-latest, windows-latest]
1818

1919
steps:
@@ -30,6 +30,15 @@ jobs:
3030
pip install -U .
3131
- name: Test
3232
run: make test
33+
34+
lint:
35+
runs-on: ubuntu-latest
36+
steps:
37+
- name: Checkout
38+
uses: actions/checkout@v1
39+
- name: Set Up Python
40+
uses: actions/setup-python@v1
41+
with:
42+
python-version: "3.8"
3343
- name: Lint
34-
run: make lint
35-
if: ${{ matrix.python-version != 2.7 && matrix.python-version != 3.5 }}
44+
run: make lint

0 commit comments

Comments
 (0)