mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-22 17:14:32 +01:00
22 lines
485 B
YAML
22 lines
485 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: 1.8
|
|
|
|
# Check out current repository
|
|
- name: Fetch Sources
|
|
uses: actions/checkout@v2.3.1
|
|
|
|
# Build application
|
|
- name: Test and Build
|
|
run: ./gradlew :web-app:build
|