Build artifacts after push to main #25
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: Test | |
on: | |
push: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test: | |
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 and test tcMenuJavaApi | |
run: mvn -B install -Dgpg.skip=true --file tcMenuJavaApi/pom.xml | |
- name: Build and test embedCONTROLCore | |
run: mvn -B install -Dgpg.skip=true --file embedCONTROLCore/pom.xml | |
- name: Build and test tcMenuGenerator | |
run: mvn -B install -Dgpg.skip=true --file tcMenuGenerator/pom.xml |