Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F36190
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..c9c28e1
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,36 @@
+name: CI
+
+on:
+ push: { branches: ["0.x"] }
+ pull_request: { branches: ["0.x"] }
+
+jobs:
+ commits:
+ name: Commitlint
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ with:
+ fetch-depth: 1000
+
+ - name: Lint commits
+ uses: docker://registry.k1.zportal.co.uk/practically-oss/conventional-tools:0.x
+ with:
+ args: conventional-tools commitlint -l1
+
+ test:
+ name: Build and test
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+
+ - name: Install dependencies
+ run: sudo apt update && sudo apt install -y luajit build-essential pkg-config cmake
+
+ - name: Build
+ run: cmake -DCMAKE_BUILD_TYPE=Release -B build/Release && (cd build/Release; make -j)
+
+ - name: Test
+ run: find lua -name "*_test.lua" | xargs luajit scripts/test.lua
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Feb 12 2026, 12:16 AM (6 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
8936
Default Alt Text
(1 KB)
Attached To
Mode
R1 ivy.nvim
Attached
Detach File
Event Timeline
Log In to Comment