Skip to content

Fixed references to previous project owner #110

Fixed references to previous project owner

Fixed references to previous project owner #110

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
env:
CLANG_TIDY: true
jobs:
test:
name: Test Implementation
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
env:
- IMAGE: rolling-ci
ROS_DISTRO: rolling
- IMAGE: iron-ci
ROS_DISTRO: iron
- IMAGE: humble-ci
ROS_DISTRO: humble
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Log into registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Run ROS Industrial CI
uses: ros-industrial/industrial_ci@master
env:
DOCKER_IMAGE: ghcr.io/Robotic-Decision-Making-Lab/blue:${{ matrix.env.IMAGE }}
CXXFLAGS: >-
-Wall -Wextra -Wpedantic -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls
CC: ${{ env.CLANG_TIDY && 'clang' }}
CXX: ${{ env.CLANG_TIDY && 'clang++' }}