Skip to content

disable shitty test #29

disable shitty test

disable shitty test #29

Workflow file for this run

name: 🎨 Run Linters
on: [push]
jobs:
clang-format:
if: "!contains(github.event.head_commit.message, '🎨')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: DoozyX/clang-format-lint-action@v0.12
name: "🎨 Run clang-format"
with:
source: '.'
extensions: 'hpp,cpp'
clangFormatVersion: 11
inplace: True
- uses: EndBug/add-and-commit@v7.2.1
name: "Commit clang-format Change"
with:
author_name: Clang Robot
author_email: robot@clang-format.com
message: '🎨 Run clang-format'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}