run tests when building the dockerhub image
Some checks failed
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m26s
Publish Docker Image / docker (ubuntu-latest) (push) Failing after 17s

This commit is contained in:
Lee 2024-04-24 20:06:14 +01:00
parent 0fb69e8d13
commit 821284463e

@ -20,8 +20,18 @@ jobs:
# Checkout the repo # Checkout the repo
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
# Setup Java and Maven
- name: Set up JDK and Maven
uses: s4u/setup-maven-action@v1.12.0
with: with:
fetch-depth: 0 java-version: ${{ matrix.java-version }}
distribution: "zulu"
maven-version: ${{ matrix.maven-version }}
# Run JUnit Tests
- name: Run Tests
run: mvn --batch-mode test -q
# Login to Docker Hub # Login to Docker Hub
- name: Login to Repo - name: Login to Repo