Skip to content

Update build config and scripts #8

Update build config and scripts

Update build config and scripts #8

Workflow file for this run

# .github/workflows/build.yml
name: Build application
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build Didomi Sample
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up our JDK environment
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Assemble
run: ./gradlew assemble --no-daemon