Skip to content

Commit

Permalink
Replace Travis CI with GitHub workflow
Browse files Browse the repository at this point in the history
Using the actions provided by ros-tooling makes things a lot simpler.

Signed-off-by: Jacob Perron <jacob@openrobotics.org>
  • Loading branch information
jacobperron committed May 9, 2023
1 parent 5124b31 commit 1edcdbd
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Continuous Integration

on:
# Run for any commit in origin repository
push:
# And pull requests from forks
pull_request:
branches:
# This avoids running the job twice for PRs from origin repository
- '**:**'

jobs:
build_and_test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: ros-tooling/setup-ros@0.1.0
with:
required-ros-distributions: foxy
- uses: ros-tooling/action-ros-ci@0.1.0
with:
package-name: create_bringup create_description create_driver create_msgs create_robot
target-ros2-distro: foxy
vcs-repo-file-url: ""

0 comments on commit 1edcdbd

Please sign in to comment.