Tags refactor #776
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: Lint | |
on: [pull_request] | |
jobs: | |
lint: | |
name: Lint using Ruff | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | |
sudo apt-get update && sudo apt-get install -y python3-pip && sudo pip3 install uv | |
- uses: actions/setup-python@v4 | |
- name: Install ruff | |
run: uv tool install ruff | |
- name: Run ruff lint check | |
run: ruff check . | |
- name: Run ruff format check | |
run: ruff format . --check |