Aegis/.github/workflows/build-app-workflow.yaml
Alexander Bakker cf63f5bef2 Fix the build
2021-12-04 11:42:41 +01:00

12 lines
339 B
YAML

name: build
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
- name: Build the app
run: ./gradlew build