Updated README.md #13
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
name: build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
name: "Build: ${{ matrix.config.name }} / ${{ matrix.config.platform }}" | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
config: | |
- { name: "Windows Latest", os: windows-latest, platform: x64 } | |
- { name: "Ubuntu Latest", os: ubuntu-latest, platform: x64 } | |
- { name: "macOS 11", os: macos-11, platform: x64 } | |
- { name: "macOS Latest", os: macos-latest, platform: arm64 } | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up OpenJDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Cache Maven dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/*.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Assemble | |
run: mvn install | |
unit-test: | |
name: Unit Test | |
runs-on: ubuntu-latest | |
needs: [ build ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up OpenJDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Cache Maven dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/*.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Run Unit Test | |
run: mvn test |