Skip to content

added github actions #1

added github actions

added github actions #1

Workflow file for this run

jobs:
format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Clang
run: sudo apt-get install -y clang-format
- name: Check Code Style
run: clang-format --dry-run -Werror -style=file **/*.cpp **/*.h **/*.hpp