Browse Source

Merge pull request #16 from sgeisler/2020-04-ci

Add type checking CI
Login
Eneko Illarramendi 5 years ago
committed by GitHub
parent
commit
5fe64d324d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      .github/workflows/mypy.yml

13
.github/workflows/mypy.yml

@ -0,0 +1,13 @@
name: mypy type checker
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: jpetrucciani/mypy-check@master
with:
path: 'lnbits'
Loading…
Cancel
Save