docs: update readme #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: Build and Test Stable | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
jobs: | |
build-and-test-stable: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout this repository | |
uses: actions/[email protected] | |
with: | |
path: gyakuenki | |
- name: Add stable Debian repository and rosdep sources list | |
run: | | |
sudo apt update && sudo apt install curl | |
curl -s http://repository.ichiro-its.org/debian/setup.bash | bash -s | |
curl -s http://repository.ichiro-its.org/rosdep/setup.bash | bash -s | |
- name: Install Modules | |
run: | | |
pip install wget tflite-runtime tflite-support | |
- name: Build and test workspace | |
uses: ichiro-its/ros2-build-and-test-action@main |