Skip to content

Dx/codebase cleanup

Dx/codebase cleanup #2

Workflow file for this run

name: Ruff
on: [push, pull_request]
jobs:
ruff_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
with:

Check failure on line 9 in .github/workflows/ruff.yml

View workflow run for this annotation

GitHub Actions / Ruff

Invalid workflow file

The workflow is not valid. .github/workflows/ruff.yml (Line: 9, Col: 5): Unexpected value 'with' .github/workflows/ruff.yml (Line: 16, Col: 5): Unexpected value 'with'
src: './backend'
ruff_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
with:
args: 'format --check'
src: './backend'