REFACTOR: Applies complete code refactoring and implements improvements. #47
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: Linux Lint | |
| on: | |
| push: | |
| branches: [ "main", "master" ] # Aciona o workflow em pushes para o main/master | |
| pull_request: | |
| branches: [ "main", "master" ] # Aciona o workflow em pull requests para o main/master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 # Usa uma máquina virtual com Ubuntu 24.04 | |
| strategy: | |
| fail-fast: false # Garante que todos os jobs rodem, mesmo que um falhe | |
| matrix: | |
| python-version: ["3.12"] # Roda os testes na versão 3.12 do Python | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 # Baixa o código do seu repositório | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Poetry | |
| run: pip install poetry | |
| - name: Install project dependencies with Poetry | |
| run: poetry add ruff | |
| - name: Lint with Ruff | |
| run: poetry run ruff check . | |
| continue-on-error: true |