Skip to content

changes from code review #19

changes from code review

changes from code review #19

Workflow file for this run

name: Linting
on:
push:
pull_request:
release:
types: [published]
jobs:
ruff_linux:
name: Ruff (linux)
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run check
uses: chartboost/ruff-action@v1
- name: Run format
uses: chartboost/ruff-action@v1
with:
args: 'format --check'