[Sprint 22 / PD-401] [Enhancement] Update Github Workflows #14
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: ros2-ws-action | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
build-and-test: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
path: ninshiki_cpp | |
- name: Checkout Jitsuyo | |
uses: actions/[email protected] | |
with: | |
repository: ichiro-its/jitsuyo | |
path: jitsuyo | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Checkout Dependencies | |
run: | | |
git clone https://github.com/ichiro-its/shisen_interfaces.git | |
git clone https://github.com/ichiro-its/ninshiki_interfaces.git | |
git clone https://github.com/ichiro-its/shisen_cpp.git | |
git clone https://github.com/ichiro-its/keisan.git | |
- name: Setup workspace | |
uses: ichiro-its/ros2-ws-action/[email protected] | |
- name: Build workspace | |
uses: ichiro-its/ros2-ws-action/[email protected] | |
- name: Test workspace | |
uses: ichiro-its/ros2-ws-action/[email protected] |