feat: remove workspace directory #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: ROS 2 CI | |
on: | |
push: | |
jobs: | |
build-and-test: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
path: workspace | |
- name: Clone Keisan | |
uses: actions/[email protected] | |
with: | |
repository: ichiro-its/keisan | |
ref: master | |
path: src/keisan | |
- name: Clone Ninshiki Interfaces | |
uses: actions/[email protected] | |
with: | |
repository: ichiro-its/ninshiki_interfaces | |
ref: master | |
path: src/ninshiki_interfaces | |
- name: Clone Shisen Cpp | |
uses: actions/[email protected] | |
with: | |
repository: ichiro-its/shisen_cpp | |
ref: master | |
path: src/shisen_cpp | |
- name: Clone Shisen Interfaces | |
uses: actions/[email protected] | |
with: | |
repository: ichiro-its/shisen_interfaces | |
ref: master | |
path: src/shisen_interfaces | |
- name: Build and test workspace | |
uses: ichiro-its/[email protected] |