update vcpkg commit to 01f602195983451bc83e72f4214af2cbc495aa94 #189
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: format | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ windows-latest ] | |
steps: | |
- uses: actions/checkout@v2 | |
# seems like cmake and clang are installed on windows runners | |
- name: check cmake exists | |
run: > | |
cmake --version | |
- name: check clang-format exists | |
run: clang-format --version | |
- name: cmake config | |
run: cmake -B build -DWINASIO_CI_FORMAT=1 . | |
- name: run clang format check | |
run: cmake --build build --target clangformat-check |