Plex/.github/workflows/maven.yml

18 lines
350 B
YAML
Raw Normal View History

2020-10-28 03:58:46 +00:00
name: Java CI
2020-11-06 01:29:38 +00:00
on: [ push ]
2020-10-28 03:58:46 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2021-11-03 21:40:59 +00:00
- uses: actions/checkout@v2
- name: Set up JDK 16
uses: actions/setup-java@v2
2020-11-06 01:29:38 +00:00
with:
2021-11-03 21:40:59 +00:00
distribution: temurin
java-version: 16
cache: maven
2020-11-06 01:29:38 +00:00
- name: Build with Maven
run: mvn -B package --file pom.xml