This repository was archived by the owner on Aug 30, 2025. It is now read-only.
Add single node selection support #45
This file contains hidden or 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: build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macOS-latest, windows-latest] | |
| java: ['11', '17'] | |
| distribution: ['temurin'] | |
| fail-fast: false | |
| name: ${{ matrix.os }} JDK ${{ matrix.distribution }} ${{ matrix.java }} | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v3 | |
| - name: Set up JDK | |
| id: setupjdk | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: ${{ matrix.distribution }} | |
| java-version: ${{ matrix.java }} | |
| - name: Build with Maven | |
| run: mvn --batch-mode verify |