Skip to content

CI fixes and improvements #88

CI fixes and improvements

CI fixes and improvements #88

Workflow file for this run

name: Lint
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
clang-tidy:
name: clang-tidy / Ubuntu 22.04
runs-on: ubuntu-22.04
env:
CC: clang
CXX: clang++
steps:
- name: Clone the repository
uses: actions/checkout@v3
with:
submodules: true
- name: Run clang-tidy
uses: ./.github/actions/run-linter
with:
lint_program_with_args: clang-tidy --quiet --warnings-as-errors=*
clazy:
name: clazy / Ubuntu 22.04
runs-on: ubuntu-22.04
env:
CC: clang
CXX: clang++
steps:
- name: Clone the repository
uses: actions/checkout@v3
with:
submodules: true
- name: Run clazy
uses: ./.github/actions/run-linter
with:
lint_program_with_args: clazy-standalone --checks=level1,no-fully-qualified-moc-types,no-non-pod-global-static