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 +