-
Notifications
You must be signed in to change notification settings - Fork 2
62 lines (57 loc) · 1.85 KB
/
build.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
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Kotlin CI with Gradle
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '21'
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Cache Dependence
id: cache-dependence
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Cache Jar
id: cache-jar
uses: actions/cache@v2
with:
path: |
build/libs/
key: ${{ runner.os }}-gradle-${{ hashFiles('src/*', 'bin/*', '**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Run unit test
if: steps.cache-jar.outputs.cache-hit != 'true'
run: ./gradlew test
- name: Upload coverage reports to Codecov
if: steps.cache-jar.outputs.cache-hit != 'true'
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./build/reports/jacoco/test/jacocoTestReport.xml
- name: Build with Gradle
if: steps.cache-jar.outputs.cache-hit != 'true'
run: ./gradlew build
- uses: actions/upload-artifact@v2
with:
name: im-sync-bot
path: build/libs/