File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 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"
You can’t perform that action at this time.
0 commit comments