aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
blob: 5e9680e59648956282bc1eb5ab7a476fbc129fd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: CI

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Install dependencies
      run: sudo apt-get install libcurl4-openssl-dev libjson-c-dev libarchive-dev meson
    - name: Build
      run: |
           meson _build
           ninja -vC _build
           ninja -vC _build dist