From e3f4b4abc1054f229683fc4b078572c93188918f Mon Sep 17 00:00:00 2001 From: Robin Strand Prestmo Date: Thu, 5 Mar 2026 10:19:27 +0100 Subject: [PATCH] feat: workflow added for testing if runners are working --- helpmehelpapplication/.github/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 helpmehelpapplication/.github/ci.yml diff --git a/helpmehelpapplication/.github/ci.yml b/helpmehelpapplication/.github/ci.yml new file mode 100644 index 0000000..4dc3150 --- /dev/null +++ b/helpmehelpapplication/.github/ci.yml @@ -0,0 +1,21 @@ +name: ci + +on: + push: + branches: main + pull_request: + branches: main + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 + with: + distribition: temurin + java-version: "25" + cache: maven + - run: + mvn -B test +