page/.forgejo/workflows/ci.yml

23 lines
453 B
YAML
Raw Permalink Normal View History

2026-09-03 21:46:07 +08:00
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: docker
container:
image: fedora:latest
steps:
- uses: actions/checkout@v4
- name: Install build dependencies
run: |
dnf install -y \
gcc meson ninja-build pkgconf-pkg-config \
gtk4-devel webkitgtk6.0-devel
- name: Configure
run: meson setup build
- name: Compile
run: meson compile -C build