diff --git a/.github/workflows/cppstylecheck.yml b/.github/workflows/cppstylecheck.yml index bf49c26..f164ece 100644 --- a/.github/workflows/cppstylecheck.yml +++ b/.github/workflows/cppstylecheck.yml @@ -1,3 +1,11 @@ - - name: C++ Style Check - uses: coleaeason/actions-uncrustify@v1 - +on: [ pull_request ] + +jobs: + cpp_style_check: + runs-on: ubuntu-latest + name: Check C++ Style + steps: + - name: Checkout this commit + uses: actions/checkout@v2 + - name: Run style checks + uses: coleaeason/actions-uncrustify@v1