mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-08 08:06:27 +00:00
* feat: use wrapper * fix: submodules * fix: >> * fix: container with python * fix: oidc * fix: latex * fix: latex in the container * fix: no sudo * fix: container to python * fix: submodule stuff * fix: just dont coverage * fix: apt install git * fix: no sudo * fix: apt-get * fix: use the oidc token * fix: cut the token * fix: small changes * fix: set the token * fix: add defaults * fix: bump to latest wrapper * fix: 0.0.20 * fix: 0.8.0 * Update action.yml * Update action.yml * Update action.yml * Update action.yml Co-authored-by: Joe Becher <joe.becher@sentry.io> * Update action.yml Co-authored-by: Joe Becher <joe.becher@sentry.io> * Update dist/codecov.sh * Update action.yml * feat: use wrapper fix: submodules fix: >> fix: container with python fix: oidc fix: latex fix: latex in the container fix: no sudo fix: container to python fix: submodule stuff fix: just dont coverage fix: apt install git fix: no sudo fix: apt-get fix: use the oidc token fix: cut the token fix: small changes fix: set the token fix: add defaults fix: bump to latest wrapper fix: 0.0.20 fix: 0.8.0 * chore(deps): 0.0.21 --------- Co-authored-by: Joe Becher <joe.becher@sentry.io>
134 lines
4.5 KiB
YAML
134 lines
4.5 KiB
YAML
---
|
|
name: Workflow for Codecov Action
|
|
on: [push, pull_request]
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
jobs:
|
|
run:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [macos-latest, windows-latest, ubuntu-latest]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4.2.2
|
|
with:
|
|
submodules: 'true'
|
|
- name: Install dependencies
|
|
run: pip install -r src/scripts/app/requirements.txt
|
|
- name: Run tests and collect coverage
|
|
run: pytest src/scripts/app/ --cov
|
|
- name: Upload coverage to Codecov (script)
|
|
uses: ./
|
|
with:
|
|
fail_ci_if_error: true
|
|
files: ./coverage/script/coverage-final.json
|
|
flags: script,${{ matrix.os }}
|
|
name: codecov-script
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
- name: Upload coverage to Codecov (demo)
|
|
uses: ./
|
|
with:
|
|
fail_ci_if_error: true
|
|
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
|
|
file: ./coverage/coverage-final.json
|
|
flags: demo,${{ matrix.os }}
|
|
name: codecov-demo
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
- name: Upload coverage to Codecov (version)
|
|
uses: ./
|
|
with:
|
|
fail_ci_if_error: true
|
|
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
|
|
file: ./coverage/coverage-final.json
|
|
flags: version,${{ matrix.os }}
|
|
name: codecov-version
|
|
version: v0.8.0
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
run-macos-latest-xlarge:
|
|
if: github.head.repo.full_name == 'codecov/codecov-action'
|
|
runs-on: macos-latest-xlarge
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4.2.2
|
|
with:
|
|
submodules: 'true'
|
|
- name: Install dependencies
|
|
run: pip install -r src/scripts/app/requirements.txt
|
|
- name: Run tests and collect coverage
|
|
run: pytest src/scripts/app/ --cov
|
|
- name: Upload coverage to Codecov (script)
|
|
uses: ./
|
|
with:
|
|
fail_ci_if_error: true
|
|
files: ./coverage/script/coverage-final.json
|
|
flags: script,macos-latest-xlarge
|
|
name: codecov-script
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
- name: Upload coverage to Codecov (demo)
|
|
uses: ./
|
|
with:
|
|
fail_ci_if_error: true
|
|
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
|
|
file: ./coverage/coverage-final.json
|
|
flags: demo,macos-latest-xlarge
|
|
name: codecov-demo
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
- name: Upload coverage to Codecov (version)
|
|
uses: ./
|
|
with:
|
|
fail_ci_if_error: true
|
|
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
|
|
file: ./coverage/coverage-final.json
|
|
flags: version,maxos-latest-xlarge
|
|
name: codecov-version
|
|
version: v0.6.0
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
run-container:
|
|
runs-on: ubuntu-latest
|
|
container: python:latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4.2.2
|
|
with:
|
|
submodules: 'true'
|
|
- name: Install deps
|
|
run: |
|
|
apt-get install git
|
|
- name: Upload coverage to Codecov (script)
|
|
uses: ./
|
|
with:
|
|
files: ./coverage/script/coverage-final.json
|
|
flags: script,${{ matrix.os }}
|
|
name: codecov-script
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
- name: Upload coverage to Codecov (demo)
|
|
uses: ./
|
|
with:
|
|
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
|
|
file: ./coverage/coverage-final.json
|
|
flags: demo,${{ matrix.os }}
|
|
name: codecov-demo
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
- name: Upload coverage to Codecov (version)
|
|
uses: ./
|
|
with:
|
|
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
|
|
file: ./coverage/coverage-final.json
|
|
flags: version,${{ matrix.os }}
|
|
name: codecov-version
|
|
version: v0.6.0
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|