forked from qltysh/example-java
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (33 loc) · 787 Bytes
/
main.yml
File metadata and controls
40 lines (33 loc) · 787 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: Main
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
push:
permissions:
actions: write
contents: read
id-token: write
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test and collect coverage
run: |
./gradlew build
./gradlew test
- uses: qltysh/qlty-action/coverage@v1
with:
oidc: true
files: build/reports/jacoco/test/jacocoTestReport.xml
add-prefix: src/main/java/