Skip to content

Commit

Permalink
Add github action for running unit tests on push
Browse files Browse the repository at this point in the history
  • Loading branch information
blaz-cerpnjak committed Mar 6, 2024
1 parent 24108f2 commit 0170a01
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions UserManagementAPI/.github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run unit tests

on:
push:
branches: [ "main" ]

jobs:
build-test-package:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
cache: 'maven'

- name: Build with Maven
run: mvn -B package --file pom.xml

- name: Run unit tests
run: java -jar target/UserManagementAPI-0.0.1-SNAPSHOT.jar --runTests

0 comments on commit 0170a01

Please sign in to comment.