fix: typos in links to the GitHub changelog #79
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: Java CI with Maven | |
| on: [ push, pull_request ] | |
| jobs: | |
| build-non-macos: | |
| strategy: | |
| matrix: | |
| java-version: [ 21 ] | |
| os: [ ubuntu-latest, windows-latest ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: ${{ matrix.java-version }} | |
| distribution: temurin | |
| cache: maven | |
| - name: Build with Maven | |
| run: mvn clean package --batch-mode --threads 4 | |
| build-macos: | |
| strategy: | |
| matrix: | |
| java-version: [ 21 ] | |
| os: [ macos-latest ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: ${{ matrix.java-version }} | |
| distribution: temurin | |
| cache: maven | |
| - name: Build with Maven | |
| run: mvn clean package --batch-mode --threads 4 -Pmacos |