-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (42 loc) · 1.2 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: CI
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/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: 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