2024-03-08 15:08:45 +01:00
|
|
|
name: Build and Test with Maven
|
2024-03-07 14:41:50 +01:00
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
2024-03-08 15:08:45 +01:00
|
|
|
Build-and-test-with-Maven:
|
2024-03-07 14:41:50 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v3
|
2024-03-08 15:00:17 +01:00
|
|
|
- name: Install maven
|
|
|
|
run: |
|
2024-03-08 15:05:02 +01:00
|
|
|
apt update
|
|
|
|
apt install -y maven
|
2024-03-08 14:54:58 +01:00
|
|
|
- name: Install java
|
|
|
|
uses: actions/setup-java@v4
|
|
|
|
with:
|
|
|
|
distribution: 'temurin'
|
|
|
|
java-version: '21'
|
|
|
|
cache: 'maven'
|
2024-03-08 17:33:49 +01:00
|
|
|
- name: Compile project
|
|
|
|
run: |
|
|
|
|
mvn compile
|
2024-03-08 14:54:58 +01:00
|
|
|
- name: Run tests
|
2024-03-07 14:41:50 +01:00
|
|
|
run: |
|
2024-03-08 14:54:58 +01:00
|
|
|
mvn test
|