Skip to content

Create c.yml

Create c.yml #1

Workflow file for this run

name: C CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: configure
run: meson setup build --buildtype=debug -Db_sanitize=address -Db_lundef=false
- name: make
run: ninja -C build
- name: make check
run: cd build && meson test