build(deps): update fastapi requirement from >=0.139.0 to >=0.139.1 #8
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: Controllo Qualità e Test | |
| on: | |
| push: | |
| branches: [ "master", "main" ] | |
| pull_request: | |
| branches: [ "master", "main" ] | |
| jobs: | |
| esecuzione-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Scarica il codice usando la versione v6 (Node.js 24) | |
| - name: Scarica il codice | |
| uses: actions/checkout@v6 | |
| # Configura Python usando la versione v6 (Node.js 24) | |
| - name: Configura Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.10' | |
| # Installa le dipendenze del progetto se esiste il file requirements.txt | |
| - name: Installa dipendenze | |
| run: | | |
| python -m pip install --upgrade pip | |
| if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
| # Installa pytest e il plugin per gestire l'assenza di test senza fallire | |
| - name: Avvia i Test con Pytest | |
| run: | | |
| pip install pytest pytest-custom-exit-code | |
| pytest --suppress-no-test-exit-code |