Skip to content
This repository has been archived by the owner on Mar 24, 2024. It is now read-only.

feat: ✨ move to add bool #33

feat: ✨ move to add bool

feat: ✨ move to add bool #33

Workflow file for this run

name: clang-format
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install clang-format
run: sudo apt-get install clang-format
- name: Run clang-format
run: find . -regex '.*\.\(cpp\|hpp\|cc\|cxx\|c\|h\)' -exec clang-format -style=llvm -i {} \;
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply clang-format
commit_options: "--no-verify --signoff"