Skip to content

Commit 9bca976

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

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

.github/workflows/build.yml

+18-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,20 @@ 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"
43+
- name: Install
44+
run: |
45+
python -m pip install --upgrade pip
46+
make setup
47+
pip install -U .
3348
- name: Lint
34-
run: make lint
35-
if: ${{ matrix.python-version != 2.7 && matrix.python-version != 3.5 }}
49+
run: make lint

0 commit comments

Comments
 (0)