We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 714d6d9 commit cb5bf4aCopy full SHA for cb5bf4a
.github/workflows/build.yml
@@ -0,0 +1,25 @@
1
+name: build lib
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ name: "build lib"
14
+ runs-on: ubuntu-latest
15
+ container:
16
+ image: archlinux:latest
17
+ steps:
18
+ - name: Install Packages
19
+ run: |
20
+ pacman -Syu --noconfirm base-devel git nasm jq ninja cpio wget unzip cmake
21
+ pacman -Syu --noconfirm qt6-wayland
22
+ - name: Build
23
24
+ cmake -B build
25
+ cmake --build build
.neocmakelint.toml
@@ -0,0 +1,3 @@
+command_upcase = "ignore" # "lowcase", "upcase"
+enable_external_cmake_lint = false # true to use external cmake-lint
+line_max_words = 80 # internal lint just supports longest check
0 commit comments