mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-20 09:57:10 +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)
|
name: Build (Linux, x86-64)
|
||||||
|
|
||||||
on: [push, pull_request]
|
on:
|
||||||
paths:
|
push:
|
||||||
- '**.cpp'
|
paths: &workflow_paths
|
||||||
- '**.h'
|
- '**.cpp'
|
||||||
- '**.c'
|
- '**.h'
|
||||||
- '**.cc'
|
- '**.c'
|
||||||
- '**.cxx'
|
- '**.cc'
|
||||||
- '**.hh'
|
- '**.cxx'
|
||||||
- '**.hpp'
|
- '**.hh'
|
||||||
- '**.hxx'
|
- '**.hpp'
|
||||||
- '**.inl'
|
- '**.hxx'
|
||||||
- "**meson.build"
|
- '**.inl'
|
||||||
- "flake.nix"
|
- "**meson.build"
|
||||||
- '.github/workflows/build-linux.yml'
|
- "flake.nix"
|
||||||
|
- '.github/workflows/build-linux.yml'
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
paths: *workflow_paths
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-linux:
|
build-linux:
|
||||||
|
|
|
||||||
32
.github/workflows/clang-format.yml
vendored
32
.github/workflows/clang-format.yml
vendored
|
|
@ -1,19 +1,23 @@
|
||||||
name: Format
|
name: Format
|
||||||
|
|
||||||
on: [push, pull_request]
|
on:
|
||||||
paths:
|
push:
|
||||||
- '**.cpp'
|
paths: &workflow_paths
|
||||||
- '**.h'
|
- '**.cpp'
|
||||||
- '**.c'
|
- '**.h'
|
||||||
- '**.cc'
|
- '**.c'
|
||||||
- '**.cxx'
|
- '**.cc'
|
||||||
- '**.hh'
|
- '**.cxx'
|
||||||
- '**.hpp'
|
- '**.hh'
|
||||||
- '**.hxx'
|
- '**.hpp'
|
||||||
- '**.inl'
|
- '**.hxx'
|
||||||
- '.clang-format'
|
- '**.inl'
|
||||||
- '.github/workflows/clang-format.yml'
|
- '.clang-format'
|
||||||
- '.github/scripts/check-clang-format.sh'
|
- '.github/workflows/clang-format.yml'
|
||||||
|
- '.github/scripts/check-clang-format.sh'
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
paths: *workflow_paths
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
clang-format:
|
clang-format:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue