fazedordecodigo execute Linters 🚀 #233
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: Linters | |
run-name: ${{ github.actor }} execute Linters 🚀 | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
steps: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Realiza o checkout | |
uses: actions/checkout@v4 | |
- name: Install the latest version of uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
python-version: 3.11 | |
- name: Instala dependências | |
run: uv add ruff mypy | |
- name: Executa Ruff | |
run: uv run ruff check | |
- name: Executa Mypy | |
run: uv run mypy . |