Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Styles check

Styles check #612

Workflow file for this run

name: Styles check
on:
push:
branches:
- main
- 'stable/**'
pull_request:
branches:
- main
- 'stable/**'
schedule:
- cron: '0 1 * * *'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run styles check
run: tox -elint