-
Notifications
You must be signed in to change notification settings - Fork 3
55 lines (50 loc) · 1.18 KB
/
codecov.yml
File metadata and controls
55 lines (50 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Codecov
on:
push:
branches: [main]
paths:
- compass/**
- tests/**
- .github/workflows/codecov.yml
- pyproject.toml
- pixi.lock
pull_request:
paths:
- compass/**
- tests/**
- .github/workflows/codecov.yml
- pyproject.toml
- pixi.lock
workflow_dispatch:
jobs:
run:
name: Codecov
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
fetch-tags: true
- uses: prefix-dev/[email protected]
with:
pixi-version: v0.62.2
locked: true
cache: true
cache-write: false
environments: pdev
- name: Generate coverage report
run: |
pixi reinstall -e pdev --locked INFRA-COMPASS
pixi run -e pdev --locked tests-p
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: false
verbose: true