Skip to content

Improve CLI output formatting with consistent styling #70

Improve CLI output formatting with consistent styling

Improve CLI output formatting with consistent styling #70

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
jobs:
build-and-test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v2
with:
version: 0.15.2
- name: Install dependencies (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libxml2-dev libcurl4-openssl-dev zlib1g-dev
- name: Format check
run: zig fmt --check src/
- name: Build
run: zig build
- name: Test
run: zig build test