forked from PickNikRobotics/moveit_pro_empty_ws
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (28 loc) · 831 Bytes
/
ci.yaml
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
30
name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
inputs:
image_tag:
description: 'The tag of the image to use for the container'
required: false
default: ''
# Run every 6 hours Mon-Fri
schedule:
- cron: "0 */6 * * 1-5"
jobs:
integration-test-in-studio-container:
uses: PickNikRobotics/moveit_pro_ci/.github/workflows/workspace_integration_test.yaml@virtual-buffer
with:
image_tag: ${{ github.event.inputs.image_tag || null }}
colcon_test_args: "--executor sequential"
secrets: inherit
ensure-no-ssh-in-gitmodules:
name: Ensure no SSH URLs in .gitmodules
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Check .gitmodules file for Git-over-SSH URLs
run: "! grep 'git@' .gitmodules"