Skip to content

Maston: separation of days by empty line #29

Maston: separation of days by empty line

Maston: separation of days by empty line #29

Workflow file for this run

name: lint
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install ruff
- run: ruff check . --output-format github --ignore E501
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install pre-commit
- run: pre-commit run --show-diff-on-failure --color=always --all-files