Add hint in README that package is deprecated #6
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: SecureStorage Pull Request Workflow | |
on: | |
pull_request: | |
branches-ignore: | |
- 'gh-pages' | |
jobs: | |
assemble: | |
name: AssembleDebug SecureStorage | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: AssembleDebug SecureStorage | |
run: bash ./gradlew assembleDebug --stacktrace | |
test: | |
needs: assemble | |
name: Test SecureStorage | |
runs-on: macOS-latest | |
strategy: | |
matrix: | |
api-level: [21, 22, 23, 25, 29] | |
target: [default] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Test SecureStorage | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ matrix.api-level }} | |
target: ${{ matrix.target }} | |
arch: x86_64 | |
profile: Nexus 6 | |
script: ./gradlew connectedAndroidTest --stacktrace |