Skip to content

Commit

Permalink
Add basic github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
LaserEyess committed Jun 3, 2024
1 parent f655528 commit 8fef22d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: test

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: install deps
run: |
sudo apt-get update
sudo apt-get install -y meson python3 libsystemd-dev curl openssh-client
- name: meson configure
run: meson setup build -Denable_tests=true
- name: meson test
run: meson test -C build

0 comments on commit 8fef22d

Please sign in to comment.