Skip to content

Add BarcodeType ref #130 #239

Add BarcodeType ref #130

Add BarcodeType ref #130 #239

Workflow file for this run

name: Test
on:
push:
branches:
- '*'
jobs:
test:
runs-on: macos-latest
strategy:
matrix:
api-level: [19, 28]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up environment
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
- name: Gradle cache
uses: gradle/gradle-build-action@v2
- name: AVD cache
uses: actions/cache@v3
id: avd-cache
with:
path: |
~.android/avd/*
~/.android/adb*
key: avd-${{ matrix.api-level }}
- name: Create AVD and generate snapshot for caching
if: steps.avd-cache.outputs.cache-hit != 'true'
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
force-avd-creation: false
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: false
script: echo "Generated AVD snapshot for caching"
- name: Run unit tests
run: ./gradlew check
- name: Run integration tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
force-avd-creation: false
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: ./gradlew connectedCheck