Cleanup & Lint Code #111
Workflow file for this run
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 Python code with ruff | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: Lint Python code with ruff | |
runs-on: ubuntu-latest | |
if: | |
github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install poetry | |
run: | | |
pipx install poetry | |
poetry --version | |
poetry env info | |
- name: Install libraries with dev group | |
run: | | |
poetry install --with dev | |
- name: Run ruff | |
run: | | |
poetry run ruff --version | |
poetry run ruff check . --preview |