Skip to content

Commit

Permalink
Add python linting in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Félix Piédallu committed Mar 14, 2024
1 parent c4bccf8 commit bf2e3ee
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/python_lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Python Lint

on:
push:
pull_request:

jobs:
mypy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1

- uses: ricardochaves/[email protected]
with:
use-pylint: false
use-pycodestyle: true
use-flake8: true
use-black: false
use-mypy: true
use-isort: false

0 comments on commit bf2e3ee

Please sign in to comment.