Skip to content

fix: update actions workflow rules #6

fix: update actions workflow rules

fix: update actions workflow rules #6

Workflow file for this run

name: Ruff Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13.1"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v3
with:
version: "latest"
src: >-
./scripts/encode.py
./scripts/metrics.py
./scripts/plot.py
./scripts/scores.py
./scripts/stats.py
- run: ruff check --fix
- run: ruff format