Skip to content

Initial commit

Initial commit #1

Workflow file for this run

on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
main:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: goto-bus-stop/setup-zig@v2
with:
version: 0.14.0
- name: Install dependencies (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y sqlite3 libsqlite3-dev libgit2-dev
- name: Install dependencies (macOS)
if: matrix.os == 'macos-latest'
run: |
brew install sqlite libgit2
- run: zig build
- run: zig build test