3.1.12 #53
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: Build Sample Apps | |
on: pull_request | |
jobs: | |
build: | |
name: Build Samples | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write | |
contents: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'microsoft' | |
java-version: '11' | |
- name: Clean | |
run: | | |
./gradlew clean | |
- name: Build Test Nami | |
run: | | |
./gradlew samples:testnami:bundleRelease |