Skip to content

Use JRE19 in container and fix artefact version #16

Use JRE19 in container and fix artefact version

Use JRE19 in container and fix artefact version #16

Workflow file for this run

---
name: Run tests
on:
push:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: temurin
java-version: "17"
cache: maven
- name: Set up properties file
run: cp src/main/resources/application.yml.ci src/main/resources/application.yml
- name: Test with maven
run: mvn test