TamableFoxes/.github/workflows/maven.yml

29 lines
732 B
YAML
Raw Normal View History

2021-07-08 18:05:01 -04:00
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-07-08 18:08:55 -04:00
- name: Checkout submodules
uses: textbook/git-checkout-submodule-action@2.1.1
2021-07-08 18:05:01 -04:00
- name: Set up JDK 16
uses: actions/setup-java@v2
with:
java-version: '16'
distribution: 'adopt'
- name: Install with Maven
2021-07-08 18:46:15 -04:00
run: mvn -B install --file pom.xml
2021-07-08 18:05:01 -04:00
- name: Build with Maven
2021-07-08 18:46:15 -04:00
run: mvn -B package --file pom.xml