Skip to content

chore(ci): upgrade to v5-beta #289

chore(ci): upgrade to v5-beta

chore(ci): upgrade to v5-beta #289

Workflow file for this run

name: Workflow for Codecov example-ci
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
set-safe-directory: true
- name: Set up Python 3.11
uses: actions/[email protected]
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests and collect coverage
run: pytest --cov app
- name: Upload coverage to Codecov
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }}