generated from loonghao/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (34 loc) · 984 Bytes
/
codecov.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
name: Codecov
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get repository name
id: repo-name
uses: MariachiBear/get-repo-name-action@v1.3.0
with:
with-owner: 'true'
string-case: 'uppercase'
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install -r requirements-dev.txt
poetry --version
- name: Run tests and collect coverage
run: |
nox -s pytest
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
slug: loonghao/${{ steps.repo-name.outputs.repository-name }}
files: 'coverage.xml'
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}