Skip to content

Bump pytest-cov from 7.0.0 to 7.1.0 #96

Bump pytest-cov from 7.0.0 to 7.1.0

Bump pytest-cov from 7.0.0 to 7.1.0 #96

Workflow file for this run

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 }}