SpotiFlyer/.github/workflows/build-and-publish-kjs.yml
2021-05-16 02:04:16 +05:30

30 lines
679 B
YAML

name: Build and Publish
on: [ push, pull_request ]
jobs:
build:
name: Test and Build
runs-on: ubuntu-latest
steps:
# Setup Java 1.8 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: 15
# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v2.3.1
# Build Android application
- name: Android App
run: ./gradlew :android:build
# Build Desktop application
- name: Desktop App
run: ./gradlew :desktop:build
# Build Web application
- name: Web App
run: ./gradlew :web-app:build