Skip to content

Add GitHub Actions workflow to greet new contributors #68

Add GitHub Actions workflow to greet new contributors

Add GitHub Actions workflow to greet new contributors #68

Workflow file for this run

name: Maven
on: [push, pull_request]
jobs:
build:
name: Test with Java ${{ matrix.jdk }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
jdk: ['8', '11', '17']
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: ${{ matrix.jdk }}
cache: 'maven'
- name: Maven Package
run: mvn -B package --file pom.xml