This repository has been archived by the owner on Nov 10, 2023. It is now read-only.
Poetry dependencies. Add FAI 500km point (RL). #128
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pylint check | |
on: [push, workflow_dispatch] | |
jobs: | |
pylint_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
pip install -U pylint | |
pip install -U aerofiles | |
- name: Analyse the code with Pylint | |
run: | | |
pylint --fail-under=9.5 $(git ls-files '*.py') |