2021-08-21 14:55:38 +03:00
|
|
|
name: 💅 Lint
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-05-16 11:09:19 +03:00
|
|
|
- uses: actions/checkout@v4
|
2022-08-28 18:33:35 +03:00
|
|
|
- name: Set up Python 3.10
|
2024-05-16 11:09:19 +03:00
|
|
|
uses: actions/setup-python@v5
|
2021-08-21 14:55:38 +03:00
|
|
|
with:
|
2022-08-28 18:33:35 +03:00
|
|
|
python-version: "3.10"
|
2021-08-21 14:55:38 +03:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
2024-09-29 14:33:10 +03:00
|
|
|
pip install tox
|
2021-08-21 14:55:38 +03:00
|
|
|
- name: Run lint
|
|
|
|
run: tox
|
|
|
|
env:
|
|
|
|
TOXENV: pre-commit
|
|
|
|
- name: Run mypy
|
|
|
|
run: tox
|
|
|
|
env:
|
|
|
|
TOXENV: mypy
|