feat(android-sdk): add get access token without a org id method #684
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: Main | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup JDK 11 for Gradle | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11.0.12 | |
- name: Clean Project | |
run: ./gradlew clean | |
- name: Check Code Style | |
run: ./gradlew checkCodeStyle | |
- name: Lint Android | |
run: ./gradlew lintAndroid | |
- name: Build & Test | |
run: ./gradlew testWithReport | |
- name: Codecov Android SDK | |
uses: codecov/codecov-action@v2 | |
with: | |
flags: android-sdk | |
directory: ./android-sdk | |
- name: Codecov Kotlin SDK | |
uses: codecov/codecov-action@v2 | |
with: | |
flags: kotlin-sdk | |
directory: ./kotlin-sdk |