Skip to content

another try at action #43

another try at action

another try at action #43

Workflow file for this run

name: Ros2 Build
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build docker container
run: docker buildx build -t local .
# - name: rosdep init and update
# run: docker run local apt update && rosdep init && rosdep update
- name: rosdep install
run: docker run local rosdep install --from-paths src -y --ignore-src --rosdistro humble
- name: colcon build
run: docker run local colcon build