We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebb734a commit d9afcabCopy full SHA for d9afcab
.github/workflows/app-build.yml
@@ -0,0 +1,16 @@
1
+name: Android Build
2
+
3
+on: [ push ]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: set up JDK 11
11
+ uses: actions/setup-java@v2
12
+ with:
13
+ distribution: adopt
14
+ java-version: 11
15
+ - name: Build with Gradle
16
+ run: ./gradlew build
.gitignore
@@ -1,5 +1,6 @@
*.iml
.gradle
+.idea
/local.properties
/.idea/caches
/.idea/libraries
0 commit comments