From 98dc1174b35dd4b30e29575376dd659e28f323ff Mon Sep 17 00:00:00 2001 From: filipa26 <108338963+filipa26@users.noreply.github.com> Date: Tue, 1 Aug 2023 17:43:04 +0100 Subject: [PATCH] Create run-unit-tests.yml --- .github/workflows/run-unit-tests.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/run-unit-tests.yml 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