Skip to content

Day 11, Part 2

Day 11, Part 2 #60

Workflow file for this run

name: ci
on:
push:
branches:
- "main"
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
name: Test
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update && sudo apt-get install -y meson ninja-build
- run: meson setup build --buildtype debugoptimized -Db_sanitize=address -Db_lundef=false
- run: ninja -C build test