-
Notifications
You must be signed in to change notification settings - Fork 82
42 lines (34 loc) · 875 Bytes
/
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
name: CI
on:
push:
branches: [main, release/*]
pull_request:
jobs:
lint:
strategy:
fail-fast: false
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make lint
test:
strategy:
fail-fast: false
matrix:
ros_distribution: [melodic, noetic, galactic, humble, iron, rolling]
name: Test (ROS ${{ matrix.ros_distribution }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make ${{ matrix.ros_distribution }}-test
test-boost-asio:
strategy:
fail-fast: false
matrix:
ros_distribution: [noetic, humble, rolling]
name: Test (ROS ${{ matrix.ros_distribution }}, Boost Asio)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make ${{ matrix.ros_distribution }}-test-boost-asio