aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/clang-format.yml
blob: 52a71d881fda9fd38034b4720b29e69a440550fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: clang-format

on: [push, pull_request]

jobs:
  clang-format:

    runs-on: ubuntu-latest

    steps:

    - name: Checkout dynarmic repo
      uses: actions/checkout@v2

    - uses: DoozyX/clang-format-lint-action@v0.15
      with:
        source: 'src tests'
        clangFormatVersion: 15