Skip to content

Merge pull request #7 from Pirate-Weather/dependabot/pip/non-major-ve… #20

Merge pull request #7 from Pirate-Weather/dependabot/pip/non-major-ve…

Merge pull request #7 from Pirate-Weather/dependabot/pip/non-major-ve… #20

Workflow file for this run

name: "Lint"
on:
push:
pull_request:
permissions:
contents: write
jobs:
ruff:
name: "Ruff"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: "actions/[email protected]"
- name: "Set up Python"
uses: actions/[email protected]
with:
python-version: "3.12.4"
- name: "Install requirements"
run: |
python -m pip install --upgrade pip
pip install ruff
- name: "Format"
run: ruff format .
- name: "Check"
run: ruff check --output-format=github . --fix --exit-zero
- name: "Auto Commit"
uses: stefanzweifel/[email protected]
with:
commit_message: 'style fixes by ruff'