Skip to content

Merge pull request #19 from WhiteSymmetry/dependabot/github_actions/g… #206

Merge pull request #19 from WhiteSymmetry/dependabot/github_actions/g…

Merge pull request #19 from WhiteSymmetry/dependabot/github_actions/g… #206

Workflow file for this run

name: Lint with Ruff
on: [push, pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install Ruff
run: pip install ruff
- name: Run Ruff
run: ruff check . --fix