Skip to content

Reintroduce the atomic-based work queue #51

Reintroduce the atomic-based work queue

Reintroduce the atomic-based work queue #51

# This workflow will lint the project using clang-tidy
name: Clang-tidy linting
on:
push:
branches: '**'
pull_request:
branches: '**'
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends make pkg-config build-essential
sudo apt-get install --no-install-recommends clang-tidy-18
sudo apt-get install --no-install-recommends libglm-dev libglfw3-dev libglew-dev libstb-dev libassimp-dev
- name: Run the linting target
run: |
make lint -j$(nproc)
- name: Clean the build area
run: |
make clean
- name: (DEBUG) Run the linting target
run: |
DEBUG=true make lint -j$(nproc)