Merge pull request #100 from MIERUNE/fix/icon-to-plugin-toolbar #58
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: Lint | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
Test: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
run: python -m pip install uv | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: uv sync | |
# - name: Type-check with Pyright | |
# run: poetry run pyright . | |
- name: Lint with ruff | |
run: uv run ruff check --output-format=github . | |
- name: Format with ruff | |
run: uv run ruff format . --check --diff |