Skip to content

Commit 2a6cfaf

Browse files
committed
Test GH actions to lint
1 parent 7813924 commit 2a6cfaf

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/lint.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Lint
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- uses: actions/setup-python@v1
13+
with:
14+
python-version: '3.7'
15+
- name: Install tox
16+
run: pip install tox
17+
- name: Run lint
18+
run: tox -e lint

0 commit comments

Comments
 (0)