feat: clone in one step #4
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 Repositories | |
run: | | |
mkdir -p workspace/src | |
git clone --branch master https://github.com/ichiro-its/keisan workspace/src/keisan | |
git clone --branch master https://github.com/ichiro-its/ninshiki_interfaces workspace/src/ninshiki_interfaces | |
git clone --branch master https://github.com/ichiro-its/shisen_interfaces workspace/src/shisen_interfaces | |
git clone --branch master https://github.com/ichiro-its/shisen_cpp workspace/src/shisen_cpp | |
- name: Build and test workspace | |
uses: ichiro-its/[email protected] |