[V4] Sketch of promise structure (#53) #88
This file contains hidden or 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: Lint | |
| on: | |
| push: | |
| branches: ["modules"] | |
| pull_request: | |
| branches: ["modules"] | |
| workflow_dispatch: | |
| jobs: | |
| lint: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Homebrew | |
| uses: Homebrew/actions/setup-homebrew@master | |
| - name: Install Dependencies | |
| run: brew install clang-format codespell | |
| - name: Run codespell | |
| run: codespell | |
| - name: Run clang-format | |
| run: | | |
| find src include test benchmark/src -name "*.cpp" -o -name "*.hpp" -o -name "*.cxx" | xargs clang-format --dry-run --Werror |