Skip to content

build: switch to py3.12 for lts #3

build: switch to py3.12 for lts

build: switch to py3.12 for lts #3

Workflow file for this run

name: ci/gh-actions/ruff
on:
push:
paths-ignore:
- "README.md"
pull_request:
paths-ignore:
- "README.md"
workflow_dispatch:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Lint
run: ruff check --select I --no-fix .
- name: Format
run: ruff format --check .