add github workflows status bars in README. (backport #60) #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is workflow for iron distribution | |
name: iron | |
# Because of rcl_logging interface, rcl_logging_syslog has each distribution branch. | |
on: | |
push: | |
branches: [ "iron" ] | |
pull_request: | |
branches: [ "iron" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# each job goes for each ros supported distribution. | |
# each job description absorb the distribution dependency as much as possible, | |
# so that build/test verification script can be agnostic from distribution dependency. | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: ros:iron | |
env: | |
ROS_DISTRO: iron | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Build and Test with ROS iron | |
shell: bash | |
run: | | |
./scripts/github_workflows.sh |