Skip to content

feat(blackboard): add GetBlackboardByKey and SetBlackboardByKey for dynamic-key access #30

feat(blackboard): add GetBlackboardByKey and SetBlackboardByKey for dynamic-key access

feat(blackboard): add GetBlackboardByKey and SetBlackboardByKey for dynamic-key access #30

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
workflow_dispatch:
inputs:
image_tag:
description: 'The tag of the image to use for the container'
required: false
default: ''
jobs:
integration-test-in-studio-container:
uses: PickNikRobotics/moveit_pro_ci/.github/workflows/workspace_integration_test.yaml@v0.0.6
with:
runner: "ubuntu-22.04"
image_tag: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || github.ref_name }}
colcon_test_args: "--executor sequential"
secrets:
moveit_license_key: ${{ secrets.STUDIO_CI_LICENSE_KEY }}
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"