Skip to content

build(deps): bump coverage from 7.10.4 to 7.10.7 #80

build(deps): bump coverage from 7.10.4 to 7.10.7

build(deps): bump coverage from 7.10.4 to 7.10.7 #80

Workflow file for this run

name: Workflow for Codecov example-python
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests and collect coverage
run: pytest --cov app --junitxml=junit.xml -o junit_family=legacy
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: getsentry/prevent-action@v0
env:
PREVENT_TOKEN: ${{ secrets.PREVENT_TOKEN }}