Add .gitea/workflows/buildAndroid.yaml

This commit is contained in:
2023-06-25 13:32:43 +02:00
parent 881668fcb0
commit df958a7448

View File

@@ -0,0 +1,10 @@
name: Build
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Build the app
run: ./gradlew build