-
-
Notifications
You must be signed in to change notification settings - Fork 15
35 lines (28 loc) · 705 Bytes
/
main.yml
File metadata and controls
35 lines (28 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
container:
image: elementary/docker:next-unstable
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
apt update
apt install -y gobject-introspection libgranite-dev libnm-dev libnma-dev libwingpanel-dev meson valac
- name: Build
env:
DESTDIR: out
run: |
meson build
ninja -C build
ninja -C build install
lint:
runs-on: ubuntu-latest
container:
image: valalang/lint
steps:
- uses: actions/checkout@v3
- name: Lint
run: io.elementary.vala-lint -d .