1
Fork 0
mirror of https://github.com/allthingslinux/tux.git synced 2024-10-02 16:43:12 +00:00
tux/.github/workflows/linting.yml
kzndotsh f5ba2c901a feat(.github/workflows/contrib.yml): add new workflow to automatically update contributors list
style(.github/workflows/linting.yml): add newline for better readability
style(.github/workflows/todo.yml): rename workflow for better clarity
feat(README.md): add contributors section to acknowledge project contributors
2024-08-26 04:19:33 +00:00

34 lines
766 B
YAML

name: 'Linting'
on: [ push, pull_request ]
permissions:
contents: write
issues: write
pull-requests: write
jobs:
Linting:
runs-on: ubuntu-22.04
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v4
with:
token: ${{ secrets.ADMIN_PAT || github.token }}
# Install Python
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12
# Install Ruff
- name: Install Ruff
run: sudo snap install ruff
# Run Ruff linter
- name: Run Ruff format
run: ruff format && ruff check . --fix
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: 'fix: Linting and formatting via Ruff'