Skip to content

Commit

Permalink
Added CI (#12)
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Hernández Cordero <[email protected]>
  • Loading branch information
ahcorde authored Jan 26, 2024
1 parent 99af171 commit cb75fde
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build and test
on:
# Run this action whenever a pull request is made
pull_request:
push:
branches:
- main

jobs:
# Note that we pass each job a different name to distinguish each linter job
image_transport_tutorials_build_rolling:
name: image_transport_tutorials_build_rolling
runs-on: ubuntu-latest
steps:
- uses: ros-tooling/[email protected]
with:
required-ros-distributions: rolling
- uses: ros-tooling/[email protected]
with:
package-name: image_transport_tutorials
target-ros2-distro: rolling
image_transport_tutorials_build_iron:
name: image_transport_tutorials_build_iron
runs-on: ubuntu-latest
steps:
- uses: ros-tooling/[email protected]
with:
required-ros-distributions: iron
- uses: ros-tooling/[email protected]
with:
package-name: image_transport_tutorials
target-ros2-distro: iron

0 comments on commit cb75fde

Please sign in to comment.