From 22ed6bf28648396ac2c39bc038b75dab10dd9324 Mon Sep 17 00:00:00 2001 From: Arthur Werbrouck Date: Thu, 29 Feb 2024 13:44:43 +0100 Subject: [PATCH] Create testing.yml --- .github/workflows/testing.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/testing.yml diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml new file mode 100644 index 00000000..2066d9c0 --- /dev/null +++ b/.github/workflows/testing.yml @@ -0,0 +1,14 @@ +name: running test with github actions +on: workflow_dispatch + +jobs: + test: + runs-on: ubuntu-latest + name: run unit tests on java 17 + steps: + - uses: actions/checkout@master + - name: setup java + uses: actions/setup-java@v1 + with: + java-version: 17 + - run: gradle test