Update documentation according to internal requirements #65
Workflow file for this run
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
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: OLCUT CI (macOS x86_64, OpenJDK 8, 11, 17) | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
# test against supported LTS versions and latest | |
java: [ 8, 11, 17 ] | |
name: OLCUT - macOS OpenJDK ${{ matrix.java }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup OpenJDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml |