Code checker #773
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: Code checker | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 4 * * *" | |
jobs: | |
validate: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
python-version: | |
- "3.10" | |
- "3.11" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install depencency | |
run: | | |
pip install aiohttp async_timeout | |
pip install dlint flake8 flake8-bandit flake8-bugbear flake8-deprecated flake8-executable isort pylint | |
- name: Flake8 Code Linter | |
run: | | |
flake8 mill/ --max-line-length=120 --extend-ignore=DUO102,DUO130,S303,S311 | |
- name: isort | |
run: | | |
isort **/*.py | |
- name: Pylint Code Linter | |
run: | | |
pylint mill |