Can now also restart failed started jobs by setting the restart_faile… #191
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
lint: | |
name: "Lint: code quality and formatting checks" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v2 | |
- name: Set up python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
cache: 'pip' | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install 'isort==5.12.0' 'black==23.10.0' 'ruff==0.1.15' | |
- name: isort | |
run: python -m isort . --check --diff | |
- name: black | |
run: python -m black --check --diff . | |
- name: ruff | |
run: ruff check . |