chore(deps): bump gradle/gradle-build-action from 3.1.0 to 3.3.0 #25
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |