Skip to content

LLVM 16 support

LLVM 16 support #1873

name: "Code Checks"
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Check that C and C++ code is correctly formatted
uses: jidicula/clang-format-action@v4.8.0
with:
exclude-regex: '(build|config|deps)'
shell-check:
name: Shell check
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: ludeeus/action-shellcheck@1.1.0
name: Check that shell scripts follow best practices
with:
scandir: './bin'