From 4fa033a7fb08cf59ed56ea873bd848cdbe11a45c Mon Sep 17 00:00:00 2001 From: ijnek Date: Sat, 20 Apr 2024 15:39:25 -0500 Subject: [PATCH] add humble ci to humble branch Signed-off-by: ijnek --- .github/workflows/build_and_test_humble.yaml | 27 ++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/build_and_test_humble.yaml diff --git a/.github/workflows/build_and_test_humble.yaml b/.github/workflows/build_and_test_humble.yaml new file mode 100644 index 0000000..82888cc --- /dev/null +++ b/.github/workflows/build_and_test_humble.yaml @@ -0,0 +1,27 @@ +name: Build and Test (humble) + +on: + # Triggers the workflow on push + push: + branches: [ humble ] + + # Triggers the workflow on pull requests + pull_request: + branches: [ humble ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + container: + image: ubuntu:jammy + + steps: + - uses: ros-tooling/setup-ros@v0.7 + with: + use-ros2-testing: true + - uses: ros-tooling/action-ros-ci@v0.3 + with: + target-ros2-distro: humble