This commit is contained in:
Tropical 2026-03-29 19:14:35 -05:00
parent d669174ecd
commit 80ca9142ef
2 changed files with 26 additions and 11 deletions

View file

@ -3,10 +3,17 @@ name: Build (Linux, x86-64)
on:
push:
paths:
- "**.cpp"
- "**.h"
- '**.cpp'
- '**.h'
- '**.c'
- '**.cc'
- '**.cxx'
- '**.hh'
- '**.hpp'
- '**.hxx'
- '**.inl'
- "**.meson.build"
- '.github/workflows/*'
- '.github/workflows/build-linux.yml*'
jobs:
@ -21,8 +28,8 @@ jobs:
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Build
run: nix build
- name: Flake integrity
run: nix flake check
- name: Build
run: nix build

View file

@ -1,12 +1,20 @@
name: Clang-Format (Linux, x86-64)
name: Check Format (Linux, x86-64)
on:
push:
paths:
- "**.cpp"
- "**.h"
- "**.meson.build"
- ".github/workflows/*"
- '**.cpp'
- '**.h'
- '**.c'
- '**.cc'
- '**.cxx'
- '**.hh'
- '**.hpp'
- '**.hxx'
- '**.inl'
- '.clang-format'
- '.github/workflows/clang-format.yml'
- '.github/scripts/check-clang-format.sh'
jobs:
formatting-check: