fix(core): group admin and membership manager should not have rights … #171
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "test build" | |
on: [ push, pull_request ] | |
jobs: | |
test: | |
name: "JDK ${{ matrix.java }} build" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '17' ] | |
steps: | |
- name: "check out code" | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 | |
- name: "set up JDK ${{ matrix.java }}" | |
uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 # v3 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: "build with Maven" | |
run: mvn -B clean install | |