Skip to content

feat: add nlohmann/json on github actions #37

feat: add nlohmann/json on github actions

feat: add nlohmann/json on github actions #37

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches: [master]
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:

Check failure on line 11 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
- name: Checkout
uses: actions/checkout@v4.1.1
with:
path: tachimawari
- name: Checkout Tachimawari Interfaces
uses: actions/checkout@v4.1.1
with:
repository: ichiro-its/tachimawari_interfaces
path: tachimawari_interfaces
- name: Checkout Kansei Interfaces
uses: actions/checkout@v4.1.1
with:
repository: ichiro-its/kansei_interfaces
path: kansei_interfaces
- name: Checkout Keisan
uses: actions/checkout@v4.1.1
with:
repository: ichiro-its/keisan
path: keisan
- name: Checkout Jitsuyo
uses: actions/checkout@v4.1.1
with:
repository: ichiro-its/jitsuyo
path: jitsuyo
token: ${{ secrets.GH_TOKEN }}
- name: Install nlohmann/json
run: |
sudo apt update && sudo apt install -y nlohmann-json3-dev
- name: Setup workspace
uses: ichiro-its/ros2-ws-action/setup@v1.0.1
- name: Build workspace
uses: ichiro-its/ros2-ws-action/build@v1.0.1
- name: Test workspace
uses: ichiro-its/ros2-ws-action/test@v1.0.1