Skip to content

Add a compilation flag to enable precomputed lookup tables (#3) #10

Add a compilation flag to enable precomputed lookup tables (#3)

Add a compilation flag to enable precomputed lookup tables (#3) #10

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