mirror of
https://github.com/yggdrasil-network/yggdrasil-android.git
synced 2025-04-29 14:45:09 +03:00
Android CI
This commit is contained in:
parent
8e74ea8ca7
commit
f9502ba058
1 changed files with 26 additions and 0 deletions
26
.github/workflows/android.yml
vendored
Normal file
26
.github/workflows/android.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
name: Android
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "main" ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ "main" ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: set up JDK 11
|
||||||
|
uses: actions/setup-java@v3
|
||||||
|
with:
|
||||||
|
java-version: '11'
|
||||||
|
distribution: 'temurin'
|
||||||
|
cache: gradle
|
||||||
|
|
||||||
|
- name: Grant execute permission for gradlew
|
||||||
|
run: chmod +x gradlew
|
||||||
|
- name: Build with Gradle
|
||||||
|
run: ./gradlew build
|
Loading…
Add table
Add a link
Reference in a new issue