Skip to content

Commit fb7c071

Browse files
committed
add GitHub CI support
1 parent 6f04a22 commit fb7c071

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: ros-model CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
with:
13+
path: ros-model
14+
- name: Build and test with Maven
15+
run: |
16+
pushd ros-model
17+
mvn clean verify -f plugins/de.fraunhofer.ipa.ros.parent/pom.xml
18+

0 commit comments

Comments
 (0)