chore: add debugging #852
This file contains hidden or 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] | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- 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 (arg token) | |
uses: codecov/codecov-action@main | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true | |
- name: Upload coverage to Codecov (env token) | |
uses: codecov/codecov-action@main | |
with: | |
fail_ci_if_error: true | |
verbose: true | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Upload coverage to Codecov (no token) | |
uses: codecov/codecov-action@main | |
with: | |
fail_ci_if_error: true | |
verbose: true | |
- name: Test for the OIDC stuff | |
run: | | |
echo -e "\033[0;32m==>\033[0m Requesting OIDC token from '$ACTIONS_ID_TOKEN_REQUEST_URL'" | |
response=$(curl -H "Authorization: bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" "$ACTIONS_ID_TOKEN_REQUEST_URL&audience=$CC_OIDC_AUDIENCE") | |
echo -e "$response" | |
CC_TOKEN=$(echo $response | cut -d\" -f6) | |
echo -e "$CC_TOKEN" | |
- name: Upload coverage to Codecov (oidc) | |
uses: codecov/codecov-action@main | |
with: | |
fail_ci_if_error: true | |
use_oidc: true | |
verbose: true |