diff --git a/.github/workflows/industrialci.yml b/.github/workflows/industrialci.yml new file mode 100644 index 0000000..46bab4c --- /dev/null +++ b/.github/workflows/industrialci.yml @@ -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 }}