Skip to content

Commit 59ce4be

Browse files
authored
Merge pull request #3 from PickNikRobotics/add-ci
Add CI to build and test experimental behaviors
2 parents 7896772 + 5080414 commit 59ce4be

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

workflows/CI.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [main]
5+
pull_request:
6+
types:
7+
- opened
8+
- reopened
9+
- synchronize
10+
- ready_for_review
11+
workflow_dispatch:
12+
inputs:
13+
image_tag:
14+
description: 'The tag of the image to use for the container'
15+
required: false
16+
default: ''
17+
18+
jobs:
19+
integration-test-in-studio-container:
20+
uses: PickNikRobotics/moveit_pro_ci/.github/workflows/workspace_integration_test.yaml@virtual-buffer
21+
with:
22+
image_tag: ${{ github.event.inputs.image_tag || null }}
23+
colcon_test_args: "--executor sequential"
24+
secrets: inherit
25+
26+
ensure-no-ssh-in-gitmodules:
27+
name: Ensure no SSH URLs in .gitmodules
28+
runs-on: ubuntu-22.04
29+
steps:
30+
- uses: actions/checkout@v3
31+
- name: Check .gitmodules file for Git-over-SSH URLs
32+
run: "! grep 'git@' .gitmodules"

0 commit comments

Comments
 (0)