Restructure CMake project layout: make interacting with Artery's options and dependencies easier #29
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: Style Check | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
clang-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v5 | |
with: | |
fetch-depth: 0 | |
- name: Install clang-format | |
run: sudo apt update && sudo apt install -y clang-format | |
- name: Run git-clang-format | |
run: git-clang-format --diff origin/master |