-
Notifications
You must be signed in to change notification settings - Fork 20
46 lines (39 loc) · 1.15 KB
/
get_coverage.yml
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
# Calculates new coverage for the base branch and uploads to codecov
name: Coverage
on:
push:
branches:
- master
jobs:
calc_coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "get tags"
run: |
git fetch --tags --force # Retrieve annotated tags.
- name: Setup conda
uses: conda-incubator/setup-miniconda@v3
with:
mamba-version: "*"
channels: conda-forge,defaults
channel-priority: true
python-version: "3.11"
activate-environment: dascore
environment-file: environment.yml
condarc-file: .github/test_condarc.yml
- name: install dascore
shell: bash -l {0}
run: |
python -m pip install -e .[test]
- name: run test suite
shell: bash -l {0}
run: |
pytest -s --cov dascore --cov-report=xml
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./coverage.xml
flags: unittests # optional
name: master_tests # optional
token: ${{ secrets.CODECOV_TOKEN }} # required