Skip to content

Commit

Permalink
Merge branch 'master' of github.com:0scarB/tail-recursive
Browse files Browse the repository at this point in the history
  • Loading branch information
0scarB committed Sep 2, 2020
2 parents 5bd9d68 + 4ba4adb commit 153dc42
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/python-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Linters

on: [push]

jobs:
lint:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '^3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Test
run: poetry run mypy tail_recursive

0 comments on commit 153dc42

Please sign in to comment.