Skip to content

Tweak WDL model params #28

Tweak WDL model params

Tweak WDL model params #28

Workflow file for this run

name: Check Code Formatting
on: [push, pull_request]
jobs:
WhiteCore:
runs-on: ubuntu-latest
name: Check Code Formatting
steps:
- uses: actions/checkout@v3
- name: Install Clang Format
run: sudo apt-get install -y clang-format
- name: Check code formatting
run: |
find . -not -path './src/external/*' -name '*.cpp' | xargs clang-format -i
find . -not -path './src/external/*' -name '*.h' | xargs clang-format -i
git diff --exit-code