-
-
Notifications
You must be signed in to change notification settings - Fork 33
49 lines (41 loc) · 1.17 KB
/
upload_coverage_report.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
---
name: upload_coverage_report
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
upload_coverage_report:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup java
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'adopt'
- name: Setup clojure
uses: DeLaGuardo/[email protected]
with:
cli: "1.10.3.1029"
- name: Run tests
run: |
clojure -X:coverage
- name: Upload coverage to codecov (tokenless)
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
uses: codecov/codecov-action@v4
with:
files: "target/coverage/codecov.json"
fail_ci_if_error: true
- name: Upload coverage to codecov (with token)
if: "! github.event.pull_request.head.repo.fork "
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: "target/coverage/codecov.json"
fail_ci_if_error: true
...