2020-05-01 16:04:36 +03:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-05-03 13:25:16 +03:00
|
|
|
- uses: actions/checkout@v3
|
2023-05-04 15:19:24 +03:00
|
|
|
- name: Set up Python 3.11
|
2023-05-03 13:25:16 +03:00
|
|
|
uses: actions/setup-python@v4
|
2020-05-01 16:04:36 +03:00
|
|
|
with:
|
2023-05-04 15:19:24 +03:00
|
|
|
python-version: '3.11'
|
2020-05-01 16:04:36 +03:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install tox
|
2022-10-19 17:10:30 +03:00
|
|
|
- name: Run pre-commit 💅
|
2020-05-01 16:04:36 +03:00
|
|
|
run: tox
|
|
|
|
env:
|
2022-10-19 17:10:30 +03:00
|
|
|
TOXENV: pre-commit
|