From 07f6f5eda1c14a6658d8798bb8322e8ad03f50a2 Mon Sep 17 00:00:00 2001 From: Jan200101 Date: Wed, 19 Aug 2020 00:11:25 +0200 Subject: add CI via Github Actions --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ci.yml (limited to '.github/workflows') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..0d71f9a --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +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 + - name: Build + run: make + -- cgit v1.2.3