graphene-django/.github/workflows/lint.yml

23 lines
433 B
YAML
Raw Normal View History

2020-05-01 16:04:36 +03:00
name: Lint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
2020-05-01 16:04:36 +03:00
with:
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
- name: Run pre-commit 💅
2020-05-01 16:04:36 +03:00
run: tox
env:
TOXENV: pre-commit