Skip to content

feat(property): freeze properties after realize #8

feat(property): freeze properties after realize

feat(property): freeze properties after realize #8

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install Meson and Ninja
run: python -m pip install --upgrade meson ninja
- name: Configure
run: meson setup build
- name: Build
run: meson compile -C build
- name: Test
run: meson test -C build --print-errorlogs