AuthMeReloaded/.github/workflows/maven.yml

24 lines
454 B
YAML
Raw Normal View History

2019-09-19 14:56:36 +02:00
name: Java CI
on:
push:
pull_request:
branches:
- master
2019-09-19 14:56:36 +02:00
jobs:
build_and_test:
strategy:
matrix:
jdkversion: [8, 11, 17]
2019-09-19 14:56:36 +02:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
2019-09-19 14:56:36 +02:00
with:
distribution: 'temurin'
java-version: ${{ matrix.jdkversion }}
cache: 'maven'
2019-09-19 14:56:36 +02:00
- name: Build with Maven
run: mvn -V -B clean package --file pom.xml