-
Notifications
You must be signed in to change notification settings - Fork 2
47 lines (38 loc) · 1.06 KB
/
coverage.yaml
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
name: coverage
on:
pull_request:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: DeLaGuardo/setup-clojure@master
with:
cli: latest
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: 17
- name: Cache m2
uses: actions/cache@v2
with:
path: ~/.m2
key: m2-${{ hashFiles('deps.edn') }}
- name: Cache gitlibs
uses: actions/cache@v2
with:
path: ~/.gitlibs
key: gitlibs-${{ hashFiles('deps.edn') }}
- name: Install dependencies
run: clojure -P -M:test:nextjournal/clerk:coverage
- name: generate coverage report
run: |
CLOVERAGE_VERSION=1.2.4 clojure -M:test:nextjournal/clerk:coverage --codecov || :
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: false
files: ./target/coverage/codecov.json