Skip to content

ci: add pr review template #80

ci: add pr review template

ci: add pr review template #80

Workflow file for this run

name: build and test
on:
push:
branches:
- main
pull_request:
jobs:
build-and-test:
name: Test using Java ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17', '19' ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml