fix: test it all #756
Workflow file for this run
This file contains 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: Workflow for Codecov example-python | |
on: [push, pull_request, pull_request_target] | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Run tests and collect coverage | |
run: pytest --cov app | |
- name: Upload coverage to Codecov (token) | |
uses: codecov/codecov-action@th/fix-head-repo-for-tokenless | |
with: | |
verbose: true | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Upload coverage to Codecov (oidc) | |
uses: codecov/codecov-action@th/fix-head-repo-for-tokenless | |
with: | |
verbose: true | |
use_oidc: true | |
- name: Upload coverage to Codecov (no token) | |
uses: codecov/codecov-action@th/fix-head-repo-for-tokenless | |
with: | |
verbose: true |