workflow(pylint): fix pylint workflow

This commit is contained in:
yyhhyyyyyy
2025-03-11 17:15:40 +08:00
parent 49ce86f2ce
commit 37660eec41
4 changed files with 23 additions and 22 deletions

View File

@@ -14,18 +14,16 @@ concurrency:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install dependencies and setup environment
run: make setup
run: |
uv -V
make setup
- name: Check Python code style
run: make fmt-check
- name: Check Python code type
run: make mypy
# TODO: Add mypy check
# - name: Check Python code type
# run: make mypy