25 lines
420 B
YAML
25 lines
420 B
YAML
---
|
|
name: Linting
|
|
on:
|
|
- push
|
|
|
|
jobs:
|
|
linting:
|
|
name: linting
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: check
|
|
uses: astral-sh/ruff-action@v3
|
|
with:
|
|
src: "./src"
|
|
args: "check"
|
|
|
|
- name: format check
|
|
uses: astral-sh/ruff-action@v3
|
|
with:
|
|
src: "./src"
|
|
args: "format --check"
|