mirror of
https://github.com/PaperMC/Waterfall.git
synced 2024-11-04 17:49:44 +01:00
Initial actions attempt
This commit is contained in:
parent
1b010cb67a
commit
bd24c6e078
30
.github/workflows/build.yml
vendored
Normal file
30
.github/workflows/build.yml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user