mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-31 12:42:54 +00:00
guh 3
This commit is contained in:
parent
d669174ecd
commit
80ca9142ef
19
.github/workflows/build-linux.yml
vendored
19
.github/workflows/build-linux.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
18
.github/workflows/clang-format.yml
vendored
18
.github/workflows/clang-format.yml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue