chore: clang format increment column width #33
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "LIBS" | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: ["*"] | |
paths: | |
- "libs/**" | |
jobs: | |
compile_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Check format" | |
run: make check_fmt | |
- name: "Compile" | |
run: make build | |
- name: "Run tests" | |
run: make test FAIL_FAST=true |