feat: CI
Some checks failed
build / test-and-build (push) Failing after 9s
test / test (push) Failing after 7s

This commit is contained in:
2025-07-25 12:49:24 +02:00
parent 15d6ade753
commit 4b583bf737
2 changed files with 6 additions and 2 deletions

View File

@@ -13,7 +13,9 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install Zig - name: Install Zig
run: snap install zig --classic --beta run: |
sudo apt-get install snapd
snap install zig --classic --beta
- name: Build binary - name: Build binary
run: zig build run: zig build

View File

@@ -11,7 +11,9 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install Zig - name: Install Zig
run: snap install zig --classic --beta run: |
sudo apt-get install snapd
snap install zig --classic --beta
- name: Run tests - name: Run tests
run: zig build test run: zig build test