Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: added workflow that tests branches, which are not master
Browse files Browse the repository at this point in the history
gclaussn committed Jan 12, 2024

Unverified

This user has not yet uploaded their public signing key.
1 parent 826b1f1 commit b88c832
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/branch-test.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b88c832

Please sign in to comment.