Skip to content

chore(deps): Bump actions/checkout from 4 to 7 #10

chore(deps): Bump actions/checkout from 4 to 7

chore(deps): Bump actions/checkout from 4 to 7 #10

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install ruff
- name: ruff check
run: ruff check .
- name: ruff format --check
run: ruff format --check .