mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-30 14:03:42 +00:00
yaml and its consequences for the human race
This commit is contained in:
parent
39ebddbafc
commit
327addddae
32
.github/workflows/build-linux.yml
vendored
32
.github/workflows/build-linux.yml
vendored
|
|
@ -1,19 +1,23 @@
|
|||
name: Build (Linux, x86-64)
|
||||
|
||||
on: [push, pull_request]
|
||||
paths:
|
||||
- '**.cpp'
|
||||
- '**.h'
|
||||
- '**.c'
|
||||
- '**.cc'
|
||||
- '**.cxx'
|
||||
- '**.hh'
|
||||
- '**.hpp'
|
||||
- '**.hxx'
|
||||
- '**.inl'
|
||||
- "**meson.build"
|
||||
- "flake.nix"
|
||||
- '.github/workflows/build-linux.yml'
|
||||
on:
|
||||
push:
|
||||
paths: &workflow_paths
|
||||
- '**.cpp'
|
||||
- '**.h'
|
||||
- '**.c'
|
||||
- '**.cc'
|
||||
- '**.cxx'
|
||||
- '**.hh'
|
||||
- '**.hpp'
|
||||
- '**.hxx'
|
||||
- '**.inl'
|
||||
- "**meson.build"
|
||||
- "flake.nix"
|
||||
- '.github/workflows/build-linux.yml'
|
||||
|
||||
pull_request:
|
||||
paths: *workflow_paths
|
||||
|
||||
jobs:
|
||||
build-linux:
|
||||
|
|
|
|||
32
.github/workflows/clang-format.yml
vendored
32
.github/workflows/clang-format.yml
vendored
|
|
@ -1,19 +1,23 @@
|
|||
name: Format
|
||||
|
||||
on: [push, pull_request]
|
||||
paths:
|
||||
- '**.cpp'
|
||||
- '**.h'
|
||||
- '**.c'
|
||||
- '**.cc'
|
||||
- '**.cxx'
|
||||
- '**.hh'
|
||||
- '**.hpp'
|
||||
- '**.hxx'
|
||||
- '**.inl'
|
||||
- '.clang-format'
|
||||
- '.github/workflows/clang-format.yml'
|
||||
- '.github/scripts/check-clang-format.sh'
|
||||
on:
|
||||
push:
|
||||
paths: &workflow_paths
|
||||
- '**.cpp'
|
||||
- '**.h'
|
||||
- '**.c'
|
||||
- '**.cc'
|
||||
- '**.cxx'
|
||||
- '**.hh'
|
||||
- '**.hpp'
|
||||
- '**.hxx'
|
||||
- '**.inl'
|
||||
- '.clang-format'
|
||||
- '.github/workflows/clang-format.yml'
|
||||
- '.github/scripts/check-clang-format.sh'
|
||||
|
||||
pull_request:
|
||||
paths: *workflow_paths
|
||||
|
||||
jobs:
|
||||
clang-format:
|
||||
|
|
|
|||
Loading…
Reference in a new issue