-
-
Notifications
You must be signed in to change notification settings - Fork 27
29 lines (22 loc) · 656 Bytes
/
test.yml
File metadata and controls
29 lines (22 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Test
on:
push:
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 25
uses: actions/setup-java@v4
with:
java-version: '25'
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