Skip to content

Commit 153dc42

Browse files
committed
Merge branch 'master' of github.com:0scarB/tail-recursive
2 parents 5bd9d68 + 4ba4adb commit 153dc42

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/python-lint.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Linters
2+
3+
on: [push]
4+
5+
jobs:
6+
lint:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Set up Python
13+
uses: actions/setup-python@v2
14+
with:
15+
python-version: '^3.8'
16+
- name: Install dependencies
17+
run: |
18+
python -m pip install --upgrade pip
19+
pip install poetry
20+
poetry install
21+
- name: Test
22+
run: poetry run mypy tail_recursive

0 commit comments

Comments
 (0)