Skip to content

Commit

Permalink
CI: add Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastinas committed Apr 26, 2024
1 parent 667cdb7 commit 3a99e8d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
24 changes: 24 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
push:
pull_request:

env:
VERBOSE: 1

jobs:
build-test:
name: Test on Ubuntu 22.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Linux dependencies
run: |
sudo apt-get -q update
sudo apt-get -q -y install check gettext libglib2.0-dev libgtk-3-dev libjson-glib-dev libpango1.0-dev meson ninja-build pkgconf xauth xvfb
- name: Build and test
uses: BSFishy/[email protected]
with:
action: test
options: --verbose

0 comments on commit 3a99e8d

Please sign in to comment.