-
Notifications
You must be signed in to change notification settings - Fork 30
63 lines (59 loc) · 1.52 KB
/
ci.testing.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: "CI: Testing"
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup Java
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '11'
cache: 'gradle'
- name: Run Tests
run: |
cd skaha
./gradlew clean check
-
name: Upload coverage artifacts
uses: actions/[email protected]
with:
name: skaha-unittests-coverage
path: skaha/build/reports/jacoco/test/jacocoTestReport.xml
if-no-files-found: error
retention-days: 1
overwrite: true
codecov:
runs-on: ubuntu-latest
needs: tests
permissions:
id-token: write
steps:
-
name: Download coverage artifacts
uses: actions/[email protected]
with:
name: skaha-unittests-coverage
-
name: List Downloaded Artifacts
run: |
echo "Downloaded artifacts:"
ls -lah $GITHUB_WORKSPACE
-
name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: jacocoTestReport.xml
flags: skaha-unittests-coverage
name: skaha-unittests-coverage
fail_ci_if_error: true
verbose: true