mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-24 18:04:33 +01:00
57dae089e2
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
31 lines
700 B
YAML
31 lines
700 B
YAML
name: Build and Publish
|
|
on: [ 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@v2
|
|
with:
|
|
distribution: 'zulu'
|
|
java-version: 15
|
|
|
|
# Check out current repository
|
|
- name: Fetch Sources
|
|
uses: actions/checkout@v3
|
|
|
|
# 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
|