Update VSCode settings and README for Catch2 version handling and con… #1
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: clang-format | |
on: | |
pull_request: | |
branches: ["*"] | |
paths: | |
["**.c", "**.cpp", "**.h", "**.hpp", "**.cxx", "**.hxx", "**.cc", "**.hh"] | |
push: | |
branches: ["*"] | |
paths: | |
["**.c", "**.cpp", "**.h", "**.hpp", "**.cxx", "**.hxx", "**.cc", "**.hh"] | |
jobs: | |
clang-format: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
path: | |
- "src" | |
- "include" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jidicula/[email protected] | |
with: | |
clang-format-version: "14" | |
check-path: ${{ matrix.path }} |