diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml new file mode 100644 index 0000000..1df92b3 --- /dev/null +++ b/.github/workflows/run-unit-tests.yml @@ -0,0 +1,17 @@ +name: run unit tests of feature branches + +on: + push: + branches: + 'feature/*' + +jobs: + run-unit-test: #job ID + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3.5.3 + + - name: run unit test + run: mvn test