Skip to content

use meson for some portability #17

use meson for some portability

use meson for some portability #17

Workflow file for this run

name: C test
on:
push:
branches: [ master ]
pull_request:
branches: '*'
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest, alpine-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: python -m pip install meson ninja
- name: Configure Project
run: meson setup builddir
- name: Run Tests
run: meson test -C builddir -v