1 parent e799960 commit 0f47c43Copy full SHA for 0f47c43
1 file changed
.github/workflows/ci.yml
@@ -3,8 +3,25 @@ on:
3
workflow_dispatch:
4
push:
5
branches: [main]
6
+ paths:
7
+ - 'app/**'
8
+ - 'gradle/**'
9
+ - '*.gradle*'
10
+ - 'gradle.properties'
11
+ - '.github/workflows/ci.yml'
12
pull_request:
13
14
15
16
17
18
19
20
+
21
+concurrency:
22
+ group: ci-${{ github.event.pull_request.number || github.ref }}
23
+ cancel-in-progress: true
24
25
jobs:
26
test:
27
runs-on: ubuntu-latest
@@ -14,7 +31,7 @@ jobs:
31
with:
32
distribution: temurin
33
java-version: 17
- - run: chmod +x gradlew
34
+ - uses: gradle/actions/setup-gradle@v4
35
- run: ./gradlew jacocoTestReport
36
- uses: codecov/codecov-action@v5
37
if: github.event_name == 'push'
0 commit comments