Merge pull request #594 from wultra/issues/579-http-client-crash #271
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: build | |
on: | |
push: | |
branches: | |
- develop | |
- master | |
- releases/* | |
pull_request: | |
schedule: | |
- cron: '30 6 * * 1' | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-12 | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Setup Java 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
cache: 'gradle' | |
- name: Build library | |
run: ./scripts/test-build.sh script android -v2 |