Skip to content

Bump docker/build-push-action from 6.6.1 to 6.7.0 (backport #34) #107

Bump docker/build-push-action from 6.6.1 to 6.7.0 (backport #34)

Bump docker/build-push-action from 6.6.1 to 6.7.0 (backport #34) #107

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: jazzy-ci
ROS_DISTRO: jazzy
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Log into registry
uses: docker/login-action@v3.3.0
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/ros2-template:${{ 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++' }}