Skip to content

changed topic name

changed topic name #24

Workflow file for this run

name: Integration Pipeline

Check failure on line 1 in .github/workflows/integration.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/integration.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: build, test
run-name: Integration pipeline triggered by ${{ github.actor }}
on:
workflow_call:
inputs:
delivery:
required: false
type: boolean
default: true
deployment:
required: false
type: boolean
default: true
workflow_dispatch:
inputs:
delivery:
description: 'Would you like to update the official image?'
required: false
default: true
type: boolean
deployment:
description: 'Would you like to run unit and benchmarking tests?'
required: false
default: true
type: boolean
jobs:
build:
# build here
test:
# test here
# needs [build]
# should just build the ros package on the container and maybe peform unit tests
# copy of the merge pipeline?