From b88c8323c44756d67fb2833d4bd5e3e5c850b27f Mon Sep 17 00:00:00 2001 From: Gabor Claussnitzer Date: Fri, 12 Jan 2024 22:45:16 +0100 Subject: [PATCH] chore: added workflow that tests branches, which are not master --- .github/workflows/branch-test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/branch-test.yml diff --git a/.github/workflows/branch-test.yml b/.github/workflows/branch-test.yml new file mode 100644 index 00000000..929f5a69 --- /dev/null +++ b/.github/workflows/branch-test.yml @@ -0,0 +1,17 @@ +name: Test branch +on: + push: + branches: + - '**' + - '!master' +jobs: + test: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v4 + - name: Set up Java environment + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Run tests via Maven + run: mvn --batch-mode clean test