forked from 4am-robotics/cob_command_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 884 Bytes
/
main.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
name: GHA CI
on:
push:
pull_request:
schedule:
- cron: "0 0 * * 0" # every Sunday at midnight
workflow_dispatch:
jobs:
industrial_ci:
name: GHA CI
runs-on: ubuntu-latest
timeout-minutes: 60
env:
ADDITIONAL_DEBS: 'apt-utils dialog git'
CATKIN_LINT: pedantic
CATKIN_LINT_ARGS: '--ignore description_boilerplate'
CMAKE_ARGS: -DCMAKE_BUILD_TYPE=Release
PYLINT_ARGS: '--output-format=parseable --errors-only --ignored-modules=gtk,mechanize,python_qt_binding'
PYLINT_CHECK: true
ROS_REPO: main
strategy:
matrix:
include:
- { ROS_DISTRO: noetic }
steps:
- uses: actions/checkout@v4
with:
submodules: true
lfs: true
ssh-known-hosts: ''
- uses: ros-industrial/industrial_ci@master
with:
config: ${{toJSON(matrix)}}