Skip to content
This repository has been archived by the owner on Nov 17, 2024. It is now read-only.

Basic unit testing implemented. I don't think its perfect but it shou… #7

Basic unit testing implemented. I don't think its perfect but it shou…

Basic unit testing implemented. I don't think its perfect but it shou… #7

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- run: pip install meson ninja
- run: meson setup build
- run: meson compile -C build
- run: meson test -C build