Update dependency nexmo-client to v9 #111
This file contains hidden or 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 app-to-app-kotlin | |
on: | |
push: | |
branches: [main] # Just in case main was not up to date while merging PR | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
run: | |
continue-on-error: true | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 15 | |
- name: Build | |
run: cd app-to-app-kotlin/app-to-app && ./gradlew app:assembleDebug && cd .. | |