-
-
Notifications
You must be signed in to change notification settings - Fork 3
49 lines (47 loc) · 1.31 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
# https://github.com/codecov/example-perl/blob/master/github.yml
name: Code coverage - codecov.io
on:
pull_request:
push:
branches:
- '*'
tags-ignore:
- '*'
jobs:
build:
runs-on: ubuntu-latest
name: codecov
container:
image: perl:stable
steps:
- uses: actions/checkout@v4
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
- name: Install Dependencies
run: |
cpanm --quiet --notest --installdeps .
cpanm --quiet --notest Module::Build Devel::Cover Devel::Cover::Report::Codecov
- name: Build module
run: |
perl Makefile.PL
make
env:
AUTHOR_TESTING: 1
AUTOMATED_TESTING: 1
# - name: Download codecov
# run: |
# Replace `linux` below with the appropriate OS
# Options are `alpine`, `linux`, `macos`, `windows`
# curl -Os https://uploader.codecov.io/latest/linux/codecov
# chmod +x codecov
- name: Submit codecov
run: |
cover -test
cover -report codecov
# ./codecov -t ${{ secrets.CODECOV_TOKEN }} -f cover_db/codecov.json
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
AUTOMATED_TESTING: 1