updated asio_standalone example #216
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: Style | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup cmake | |
uses: jwlawson/actions-setup-cmake@v1.13 | |
with: | |
cmake-version: '3.27.x' | |
- name: Install format dependencies | |
run: pip3 install clang-format==14.0.6 cmake_format==0.6.11 pyyaml | |
- name: configure | |
run: cmake -Stest/style -Bbuild/style | |
- name: check style | |
run: cmake --build build/style --target check-format |