Modernize Android qrcode module with CameraX and zxing-cpp #45
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: PullRequest | |
on: [pull_request] | |
jobs: | |
buildTest: | |
name: Build SDK and HelloCardboard for Android | |
runs-on: macos-10.15 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Set Up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Build sdk | |
run: ./gradlew :sdk:assemble | |
- name: Build HelloCardboard | |
run: ./gradlew :hellocardboard-android:assembleDebug | |
- name: Code checks | |
run: ./gradlew check |