✨ 更新真寻日报数据模型,修改字段类型并优化数据获取逻辑 #29
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ruff Lint | |
on: [push, pull_request] | |
jobs: | |
ruff: | |
name: Ruff Lint | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ruff-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Ruff | |
uses: astral-sh/ruff-action@v3 | |
- name: Run Ruff Check | |
run: ruff check |