Skip to content

(WIP)

(WIP) #31

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
distribution: 'temurin'
java-version: 21
- uses: gradle/actions/setup-gradle@dbbdc275be76ac10734476cc723d82dfe7ec6eda # v3.4.2
with:
validate-wrappers: true
# https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md#android
- run: cd parcelize-example && ../gradlew test
- uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
with:
name: jacoco-report
path: build/reports/jacoco/test/html/
if-no-files-found: error