Skip to content

Adding Trajopt_Ifopt option to all examples #2264

Adding Trajopt_Ifopt option to all examples

Adding Trajopt_Ifopt option to all examples #2264

Workflow file for this run

name: Clang-Format
on:
push:
branches:
- master
pull_request:
schedule:
- cron: '0 5 * * *'
jobs:
clang_format:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Run clang format
run: |
sudo apt update
sudo apt install -y git clang-format-8
if [ $? -ge 1 ]; then return 1; fi
./.run-clang-format
if [ $? -ge 1 ]; then return 1; fi
output=$(git diff)
if [ -n "$output" ]; then exit 1; else exit 0; fi