Skip to content

Bump to Ubuntu 24.04 and llvm-18 #207

Bump to Ubuntu 24.04 and llvm-18

Bump to Ubuntu 24.04 and llvm-18 #207

Workflow file for this run

name: clang-format
on:
pull_request:
jobs:
clang-format:
name: clang-format
strategy:
fail-fast: true
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get clang-format 18
run: sudo apt update && sudo apt install clang-format-18
- name: Run clang-format
run: >
clang-format-18
-Werror
--dry-run
src/*.cpp
src/**/*.cpp
src/*.hpp
src/**/*.hpp
res/shader/*.*
res/shader/**/*.*