Skip to content

Run tests

Run tests #5

Workflow file for this run

name: test
run-name: Run tests
on:
push:
branches: ['master']
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Pull submodules
run: git submodule update --init --recursive
- name: Set up Meson and Ninja
run: |
sudo apt-get update
sudo apt-get install -y meson ninja-build build-essential
- name: Build
run: |
meson build
ninja -C build
- name: Test
run: |
ninja -C build test