0
0
mirror of https://github.com/schwabe/ics-openvpn.git synced 2024-09-20 03:52:27 +02:00
openvpn-android/.github/workflows/build.yaml
2021-10-03 02:53:26 +02:00

23 lines
690 B
YAML

# The name of our workflow
name: Build
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
target: [Ui, Skeleton]
name: "Release ${{ matrix.target }}"
runs-on: ubuntu-latest
steps:
- name: Use debug signing
run: mkdir -p ~/.gradle && echo -e "icsopenvpnDebugSign=true\norg.gradle.jvmargs=-Xmx2048M" > ~/.gradle/gradle.properties
- name: Checkout the code
uses: actions/checkout@v2
with:
submodules: true
- name: Build the app
run: ./gradlew assemble${{ matrix.target }}Release
- name: Run Unit tests
run: ./gradlew test${{ matrix.target }}ReleaseUnitTest