[refactor] Java package names and Maven groupId / artifactId names sh… #82
Workflow file for this run
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: Build | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| jdk: [ 21 ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK ${{ matrix.jdk }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ matrix.jdk }} | |
| distribution: liberica | |
| cache: maven | |
| - name: Build with Maven | |
| run: mvn -V -B package -DskipTests | |
| - name: Run Tests | |
| run: mvn -V -B test | |
| - name: Check JavaDoc | |
| run: mvn -V -B javadoc:javadoc |