Consistency between total infected and total over mortality groups re… #1476
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint clang-format | |
on: | |
- push | |
- pull_request | |
jobs: | |
lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get clang-format-lint-action as image | |
run: | | |
docker build -t doozyx/clang-format-lint-action "github.com/DoozyX/clang-format-lint-action" | |
- name: Run clang-format lint | |
run: | | |
docker run --rm --workdir /src -v $(pwd):/src doozyx/clang-format-lint-action --clang-format-executable /clang-format/clang-format10 -r --exclude .git include/*/*.hpp tests/*.cpp |