Daniel Holle
38827544c9
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 2m21s
25 lines
575 B
YAML
25 lines
575 B
YAML
name: Build and Test with Maven
|
|
on: [push]
|
|
|
|
jobs:
|
|
Build-and-test-with-Maven:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- name: Install maven
|
|
run: |
|
|
apt update
|
|
apt install -y maven
|
|
- name: Install java
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: '21'
|
|
cache: 'maven'
|
|
- name: Compile project
|
|
run: |
|
|
mvn compile
|
|
- name: Run tests
|
|
run: |
|
|
mvn test |