SP-1331-Add-Default-Base-URL #63
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java Unit Test | |
# This workflow will build a java project and run unit tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/[email protected] | |
with: | |
java-version: 11 | |
- name: Build | |
run: mvn --no-transfer-progress clean compile | |
- name: Unit Test | |
run: mvn --no-transfer-progress test |