Skip to content

Updated Version information to match 1.4 #176

Updated Version information to match 1.4

Updated Version information to match 1.4 #176

Workflow file for this run

name: clang-format-16
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches:
- rel/*
- dev/*
- main
pull_request:
branches:
- rel/*
- dev/*
- main
jobs:
formatting-check:
name: check
runs-on: ubuntu-latest
strategy:
matrix:
path:
- check: "libclambcc"
exclude: ""
steps:
- uses: actions/checkout@v2
- name: Run clang-format style check for C/C++ programs.
uses: jidicula/[email protected]
with:
clang-format-version: "16"
check-path: ${{ matrix.path['check'] }}
exclude-regex: ${{ matrix.path['exclude'] }}