Skip to content

Jenkins: change build node to use 'default' label #180

Jenkins: change build node to use 'default' label

Jenkins: change build node to use 'default' label #180

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'] }}