Skip to content

Generate Analog EQ filter plot on a background thread, and update submodule #62

Generate Analog EQ filter plot on a background thread, and update submodule

Generate Analog EQ filter plot on a background thread, and update submodule #62

Workflow file for this run

name: Auto-formatter
on:
pull_request:
branches:
- main
- develop
paths:
- '**.cpp'
- '**.h'
workflow_dispatch:
jobs:
build_and_test:
name: Apply clang-format to pull request
runs-on: ubuntu-latest
steps:
- name: Install Linux Deps
run: |
sudo apt update
sudo apt -y install clang-format-14
clang-format-14 --version
- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
- name: Run clang-format
shell: bash
run: find src/ -iname *.h -o -iname *.cpp | xargs clang-format-14 -style=file -verbose -i
- name: Commit & Push changes
uses: actions-js/push@master
with:
message: "Apply clang-format"
branch: ${{ github.head_ref }}
github_token: ${{ secrets.GITHUB_TOKEN }}