Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/workflows/lib-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,19 @@ on:
push:
paths:
- "discord/**"
- "requirements/**"
- "examples/**"
- "scripts/**"
- "tests/**"
- "*.toml"
- "*.py"
- ".*"
branches: [master]
pull_request:
paths:
- "discord/**"
- "requirements/**"
- "examples/**"
- "scripts/**"
- "tests/**"
- "*.toml"
- "*.py"
- ".*"
Expand Down Expand Up @@ -63,9 +67,9 @@ jobs:
- name: Sync dependencies
run: uv sync --no-python-downloads --group dev
- name: "Run ruff linter check"
run: uv run ruff check discord/
run: uv run ruff check .
- name: "Run ruff formatter check"
run: uv run ruff format --check discord/
run: uv run ruff format --check .
mypy:
if: ${{ github.event_name != 'schedule' }}
runs-on: ubuntu-latest
Expand Down