mirror of
https://github.com/onyx-and-iris/slobs-cli.git
synced 2025-06-27 23:30:23 +01:00
20 lines
285 B
YAML
20 lines
285 B
YAML
name: Ruff
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
ruff:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: astral-sh/ruff-action@v3
|
|
with:
|
|
args: 'format --check --diff'
|