rpcsx/.github/workflows/format.yml
Isaac Marovitz 098220217c
Fix typo & other problems (#12)
* Ignore external deps
* Clang 16
* clang-format 16
* Fix linting action
2023-07-07 00:48:59 +03:00

18 lines
388 B
YAML

name: Formatting check
on:
push:
pull_request:
workflow_dispatch:
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Run clang-format
uses: jidicula/clang-format-action@v4.11.0
with:
exclude-regex: (libspirv|3rdparty)
clang-format-version: 16