wip: fix editing pin on single screen on windows #4
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: test-clang-format | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source code | |
if: github.event_name == 'push' | |
uses: actions/checkout@v4 | |
- name: Checkout Source code | |
if: github.event_name == 'pull_request' | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- uses: DoozyX/clang-format-lint-action@v0.13 | |
with: | |
source: './src' | |
extensions: 'h,cpp' | |
clangFormatVersion: 11 | |
style: file |