forked from FlexBE/generic_flexbe_states
-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (32 loc) · 849 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
name: CI
on:
push:
pull_request:
schedule:
- cron: "0 0 * * 0" # every Sunday at midnight
workflow_dispatch:
jobs:
industrial_ci:
if: github.event.pull_request.draft == false # only run on non-draft PRs
runs-on: ubuntu-latest
timeout-minutes: 60
env:
ADDITIONAL_DEBS: 'apt-utils dialog'
CATKIN_LINT: pedantic
CMAKE_ARGS: -DCMAKE_BUILD_TYPE=Release
PARALLEL_TESTS: 1
PYLINT_ARGS: '--output-format=parseable --errors-only --disable=method-hidden'
PYLINT_CHECK: true
ROS_REPO: main
strategy:
matrix:
include:
- { ROS_DISTRO: noetic }
steps:
- uses: actions/checkout@v4
with:
lfs: true
ssh-known-hosts: ''
- uses: ros-industrial/industrial_ci@master
with:
config: ${{toJSON(matrix)}}