Skip to content

Commit

Permalink
chore: added workflow that tests branches, which are not master
Browse files Browse the repository at this point in the history
  • Loading branch information
gclaussn committed Jan 12, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
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.