Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
eudaldgr committed Jul 27, 2020
1 parent 5195d8d commit dff9d27
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

container:
image: elementary/docker:unstable

steps:
- uses: actions/checkout@v1
- name: Install Dependencies
run: |
apt update
apt install -y meson gobject-introspection libgranite-dev libglib2.0-dev libgee-0.8-dev libgirepository1.0-dev libgtk-3-dev valac
- name: Build
env:
DESTDIR: out
run: |
meson build
ninja -C build
ninja -C build install

0 comments on commit dff9d27

Please sign in to comment.