-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (38 loc) · 958 Bytes
/
ci.yml
File metadata and controls
40 lines (38 loc) · 958 Bytes
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
name: CI
on:
workflow_dispatch:
push:
branches: [main]
paths:
- 'app/**'
- 'gradle/**'
- '*.gradle*'
- 'gradle.properties'
- '.github/workflows/ci.yml'
pull_request:
branches: [main]
paths:
- 'app/**'
- 'gradle/**'
- '*.gradle*'
- 'gradle.properties'
- '.github/workflows/ci.yml'
concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- uses: gradle/actions/setup-gradle@v4
- run: ./gradlew jacocoTestReport
- uses: codecov/codecov-action@v5
if: github.event_name == 'push'
with:
files: app/build/reports/jacoco/jacocoTestReport/jacocoTestReport.xml
fail_ci_if_error: false