This repository has been archived by the owner on Sep 25, 2024. It is now read-only.
Add info that project is currently not maintained. #51
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
# Default build validation "clean verify" for non-experimental branches | |
name: Build | |
on: | |
push: | |
branches-ignore: | |
- 'experimental/**' | |
pull_request: | |
branches-ignore: | |
- 'experimental/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 8 | |
cache: maven | |
- name: Build and verify | |
run: mvn -s ./.maven-settings.xml -B -U clean verify |