Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added CI #12

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading