TotalFreedomMod/.github/workflows/maven.yml

16 lines
283 B
YAML
Raw Normal View History

2021-06-29 22:52:11 +00:00
name: Maven-Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
2021-06-30 05:01:06 +00:00
- name: Set up JDK 16
2021-06-29 22:52:11 +00:00
uses: actions/setup-java@v1
with:
2021-06-30 05:01:06 +00:00
java-version: 16
2021-06-29 22:52:11 +00:00
- name: Build with Maven
run: mvn -B package --file pom.xml