Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
30 changes: 30 additions & 0 deletions .github/workflows/format.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Code Format Test

on:
pull_request:
branches: [ "master" ]

push:
branches: [ "master" ]

jobs:
pre-commit:
name: Format
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install clang-format-12
run: sudo apt-get install clang-format-12

- name: Install and run pre-commit
run: |
python -m pip install pre-commit
git fetch origin
pre-commit run --show-diff-on-failure --color=always --from-ref origin/master --to-ref HEAD
id: precommit
6 changes: 6 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
repos:
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v14.0.6
hooks:
- id: clang-format
files: \.(c|cpp|h)$