add dependency install step to CI
All checks were successful
Generic zig build / build (push) Successful in 32s

This commit is contained in:
Emil Lerch 2024-07-16 10:46:50 -07:00
parent 6ec2c516ab
commit 8fa6863fc5
Signed by: lobo
GPG Key ID: A7B62D657EF764F8

View File

@ -14,6 +14,8 @@ jobs:
with: with:
version: 0.12.0 version: 0.12.0
- uses: elerch/zig-action-cache@v1.1.6 - uses: elerch/zig-action-cache@v1.1.6
- name: Install dependencies
run: apt-get update && apt-get install --no-install-recommends -y libnotmuch-dev
- name: Build project - name: Build project
run: zig build --summary all run: zig build --summary all
- name: Run tests - name: Run tests