Merge pull request #84 from bergzand/pr/fix_skip_simple #57
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: Format and Tidy | |
on: [push] | |
jobs: | |
lint: | |
strategy: | |
matrix: | |
check: [clang-tidy, clang-format] | |
runs-on: ubuntu-latest | |
container: silkeh/clang:latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install prerequisites" | |
run: apt update && apt install -y meson ninja-build python-is-python3 git libcunit1-dev | |
- name: Configure | |
run: meson build -Denable-tests=false -Denable-examples=false | |
- name: ${{ matrix.check }} | |
run: ninja -C build ${{ matrix.check }} |