Skip to content

ci: Add CI

ci: Add CI #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get install \
gobject-introspection \
libgirepository1.0-dev \
libglib2.0-dev \
meson \
ninja-build
- name: Build
run: |
meson setup build
meson compile -C build
- name: Test
run: meson test -C build