Stream-ordered wait{_any,_all}, fix wait_any implementation #369
Workflow file for this run
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: clang-format check | |
| # only run most recent workflow in branch | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - README.md | |
| types: [ opened, reopened, synchronize ] | |
| permissions: read-all | |
| jobs: | |
| formatting-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run clang-format style check. | |
| uses: DoozyX/[email protected] | |
| with: | |
| clangFormatVersion: 14 |