Skip to content

Bump version to 1.1.0 #12

Bump version to 1.1.0

Bump version to 1.1.0 #12

Workflow file for this run

name: Clang-Format Lint
on: [push, pull_request]
jobs:
clang-format:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Run clang-format
run: |
find . -type f \( -name '*.c' -o -name '*.cpp' -o -name '*.h' \) -print0 | xargs -0 -n1 clang-format --style=file --dry-run --Werror