#537 documentation and a few minor updates. #104
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: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 22 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '22' | |
distribution: 'liberica' | |
cache: maven | |
- name: Build tcMenuJavaApi | |
run: mvn -B install -Dgpg.skip=true --file tcMenuJavaApi/pom.xml | |
- name: Build embedCONTROLCore | |
run: mvn -B install -Dgpg.skip=true --file embedCONTROLCore/pom.xml | |
- name: Build tcMenuGenerator | |
run: mvn -B install -Dgpg.skip=true --file tcMenuGenerator/pom.xml |