We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1654d2f commit e66d614Copy full SHA for e66d614
.github/workflows/lint.yml
@@ -0,0 +1,26 @@
1
+name: 💅 Lint
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Set up Python 3.8
12
+ uses: actions/setup-python@v2
13
+ with:
14
+ python-version: 3.8
15
+ - name: Install dependencies
16
+ run: |
17
+ python -m pip install --upgrade pip
18
+ pip install tox
19
+ - name: Run lint
20
+ run: tox
21
+ env:
22
+ TOXENV: pre-commit
23
+ - name: Run mypy
24
25
26
+ TOXENV: mypy
0 commit comments