Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/schaal/ocreader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Schaal <daniel@schaal.email>2020-04-26 10:32:45 +0300
committerDaniel Schaal <daniel@schaal.email>2020-05-22 10:08:54 +0300
commitdfeae563cd6a83486e75320add864d9812d3b243 (patch)
treeaadd47a861c76f9f90193376912635627b5d9e9f /.github
parentda0e13e4d208f4f410b842babcad680b45c879bd (diff)
Add github action workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/android.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml
new file mode 100644
index 00000000..7ec01475
--- /dev/null
+++ b/.github/workflows/android.yml
@@ -0,0 +1,21 @@
+name: Android CI
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: set up JDK 1.8
+ uses: actions/setup-java@v1
+ with:
+ java-version: 1.8
+ - name: Build with Gradle
+ run: ./gradlew build