Skip to content

Commit

Permalink
Add a GitHub CI workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Górny <mgorny@gentoo.org>
  • Loading branch information
mgorny committed Jun 11, 2024
1 parent ed3069e commit 91f9f2d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: apt-get install -y meson
- name: Configure
run: meson setup . build
- name: Build
run: meson compile -C build
- name: Install
run: sudo meson install -C build

0 comments on commit 91f9f2d

Please sign in to comment.