Update Workflows #2
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
name: CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
build-test: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout this repository | |
uses: actions/[email protected] | |
with: | |
path: kansei | |
- name: Setup workspace | |
uses: ichiro-its/ros2-ws-action/[email protected] | |
with: | |
distro: iron | |
- name: Build workspace | |
uses: ichiro-its/ros2-ws-action/[email protected] | |
- name: Test workspace | |
uses: ichiro-its/ros2-ws-action/[email protected] |