Bump pytest-cov from 7.0.0 to 7.1.0 #96
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: Test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| # For SonarCloud Analysis | |
| # Shallow clones should be disabled for a better relevancy of analysis | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - name: Install pipenv | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install pipenv==2022.6.7 | |
| - name: Install requirements | |
| run: pipenv install --dev | |
| - name: Tests | |
| run: pipenv run tests | |
| - name: SonarCloud Scan | |
| uses: SonarSource/sonarqube-scan-action@v7 | |
| with: | |
| args: > | |
| -Dsonar.projectVersion=${{ github.sha }} | |
| env: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |