Initial actions attempt

This commit is contained in:
Shane Freeder 2021-05-30 04:05:35 +01:00
parent 1b010cb67a
commit bd24c6e078
No known key found for this signature in database
GPG Key ID: A3F61EA5A085289C
1 changed files with 30 additions and 0 deletions

30
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: Build Waterfall
on:
push:
branches:
- master
- actions #temp
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [16,8]
fail-fast: true
steps:
- uses: actions/checkout@v2
- name: Install Java ${{ matrix.java }}
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: patch
run: |
git config --global user.email "no-reply@github.com"
git config --global user.name "Github Actions"
./waterfall p
- name: build
run: mvn clean package javadoc:javadoc