Skip to content

Refactor template params for new standard #292

Refactor template params for new standard

Refactor template params for new standard #292

# Copyright (c) Brandon Pacewic
# SPDX-License-Identifier: MIT
name: Clang Format Check
on:
push:
branches:
- '**' # All branches
pull_request:
branches:
- 'mega'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: jannekem/run-python-script-action@v1
with:
script: |
import os
result = os.system('python3 tests/clang_format_test.py')
if result != 0:
exit(1)
else:
exit(0)