Skip to content

fix: see things e2e #65

fix: see things e2e

fix: see things e2e #65

Workflow file for this run

name: Workflow for Codecov example-python

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 22, Col: 9): Unexpected value 'uses'
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() }}
run: |
uses: getsentry/prevent-action@v0
env:
PREVENT_TOKEN: ${{ secrets.PREVENT_TOKEN }}