Add Industrial CI

This commit is contained in:
Daisuke Sato 2021-05-22 19:29:45 +09:00
parent 41db00fe31
commit e057007d79

31
.github/workflows/industrialci.yml vendored Normal file
View file

@ -0,0 +1,31 @@
name: industrial_ci
on:
push:
paths-ignore:
- '**.md'
- '**.jpg'
- '**.pdf'
- '**.png'
pull_request:
paths-ignore:
- '**.md'
- '**.jpg'
- '**.pdf'
- '**.png'
schedule:
- cron: "0 1 * * 2" # Weekly on Tuesdays at 01:00(GMT)
jobs:
industrial_ci:
continue-on-error: true
strategy:
matrix:
env:
- { ROS_DISTRO: melodic, ROS_REPO: main }
# - { ROS_DISTRO: noetic, ROS_REPO: main }
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: "ros-industrial/industrial_ci@master"
env: ${{ matrix.env }}