Skip to content

Fix maven issue in github action #5

Fix maven issue in github action

Fix maven issue in github action #5

Workflow file for this run

name: Build and run tests workflow
on:
push:
branches:
- github-action
pull_request:
branches:
- github-action
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- run: mvn --version
- name: clean, build and run unit tests
run: mvn clean test