-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub workflow to build with Keycloak Nightly (#12)
* Add GitHub workflow to build with Keycloak Nightly Signed-off-by: Jon Koops <[email protected]> * Use correct `name` for workflow Co-authored-by: Marek Posolda <[email protected]> Signed-off-by: Jon Koops <[email protected]> --------- Signed-off-by: Jon Koops <[email protected]> Co-authored-by: Marek Posolda <[email protected]>
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Keycloak Client CI | ||
on: | ||
push: | ||
pull_request: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: 21 | ||
check-latest: true | ||
cache: maven | ||
|
||
- name: Build with Keycloak Nightly | ||
run: mvn -B package -Pnightly |
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