Skip to content

perf: 自动注册路由出错时抛出异常以便于调试 #35

perf: 自动注册路由出错时抛出异常以便于调试

perf: 自动注册路由出错时抛出异常以便于调试 #35

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run linting
run: |
ruff check ruoyi-fastapi-backend
- name: Run format check
run: |
ruff format ruoyi-fastapi-backend --check