-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (36 loc) · 1.13 KB
/
test.yaml
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
name: 'Test'
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
DEEPSOURCE_DSN: ${{secrets.DEEPSOURCE_DSN}}
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Download the DeepSource CLI
run: curl https://deepsource.io/cli | sh
- name: Enable gradlew execution
run: chmod +x gradlew
- name: Test
run: ./gradlew koverXmlReportRelease
- name: Upload Coverage Report
run: ./bin/deepsource report --analyzer test-coverage --key kotlin --value-file sdk/build/reports/kover/reportRelease.xml