Skip to content

Commit

Permalink
Create user_management_service.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
blaz-cerpnjak authored Mar 6, 2024
1 parent 33e9791 commit fc69994
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven

- name: Build and test with Maven
working-directory: ./UserManagementAPI
run: mvn -B package --file pom.xml

0 comments on commit fc69994

Please sign in to comment.