Skip to content

Updated Upstream (BungeeCord) (Fixes #840) #22

Updated Upstream (BungeeCord) (Fixes #840)

Updated Upstream (BungeeCord) (Fixes #840) #22

Workflow file for this run

name: Build Waterfall
on:
push:
branches:
- master
- actions #temp
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [17,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 install javadoc:javadoc -B