Merge pull request #221 from jahandar00/main #429
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: RosTooling CI | |
on: [push,pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
path: RosTooling | |
- name: Install jdk 19 | |
run: sudo apt install -y openjdk-19-jre | |
- name: Set up Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: '19' | |
- name: Debug | |
run: | | |
uname -a | |
mvn --version | |
java --version | |
- name: Build and test with Maven | |
run: | | |
pushd RosTooling | |
mvn clean verify -f plugins/de.fraunhofer.ipa.ros.parent/pom.xml |