Skip to content

Commit

Permalink
Add GitHub CI workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Górny <[email protected]>
  • Loading branch information
mgorny committed May 14, 2024
1 parent 30e6eef commit b351763
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install deps
run: sudo apt install -y meson
- name: Configure
run: meson setup build
- name: Test
run: meson test -C build --print-errorlogs

0 comments on commit b351763

Please sign in to comment.