Resolvendo TODO em Module Flunt Regex Patterns #138
Workflow file for this run
This file contains 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: Tests | |
run-name: ${{ github.actor }} execute Linters 🚀 | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
steps: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Realiza o checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Atualiza Pip | |
run: python -m pip install --upgrade pip | |
- name: Instala dependências | |
run: pip install tox tox-gh-actions | |
- name: Executa Tox | |
run: tox |