mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-02 09:26:12 +08:00
28 lines
453 B
YAML
28 lines
453 B
YAML
name: Ruff Lint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
paths:
|
|
- "nonebot_bison/**"
|
|
- "extra_plugins/**"
|
|
- "tests/**"
|
|
- "bot.py"
|
|
|
|
jobs:
|
|
ruff:
|
|
name: Ruff Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Run Ruff Lint
|
|
uses: astral-sh/ruff-action@v3
|
|
with:
|
|
src: >-
|
|
nonebot_bison/
|
|
extra_plugins/
|
|
tests/
|