Skip to content

Save results to csv file #110

Save results to csv file

Save results to csv file #110

Workflow file for this run

name: style
on:
pull_request:
push:
branches: [ main ]
defaults:
run:
shell: bash
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro: ['jazzy']
container:
image: ros:${{ matrix.distro }}-ros-base
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: uncrustify
run: /ros_entrypoint.sh ament_uncrustify ./
- name: cpplint
run: /ros_entrypoint.sh ament_cpplint ./
- name: black
run: sudo apt update && sudo apt install ros-${{ matrix.distro }}-ament-black -y && /ros_entrypoint.sh ament_black ./