Skip to content

Update README.md

Update README.md #30

Workflow file for this run

name: ClangFormat
# The concurrency spec means that we'll only run one set of jobs per pull request or push to main.
# If a new push or pull request comes in while a job is running, all jobs in the concurrency group will be cancelled.
concurrency:
group: clang-format-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
jobs:
clang-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: clang-format style check
uses: jidicula/[email protected]
with:
clang-format-version: '17'
check-path: 'src'
fallback-style: 'llvm' # optional