Commit 1971c11e authored by Jonas Kaufmann's avatar Jonas Kaufmann Committed by Antoine Kaufmann
Browse files

adds github action for pylint and pytype

parent 81d34ece
name: lint-python
on:
pull_request:
push:
branches: [main]
jobs:
lint-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
architecture: 'x64'
- run: |
pip install pylint
make lint-python
name: typecheck-python
on:
pull_request:
push:
branches: [main]
jobs:
typecheck-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
architecture: 'x64'
- run: |
pip install pytype
make typecheck-python
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment