aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJan200101 <sentrycraft123@gmail.com>2020-08-19 00:11:25 +0200
committerJan200101 <sentrycraft123@gmail.com>2020-08-19 00:11:25 +0200
commit07f6f5eda1c14a6658d8798bb8322e8ad03f50a2 (patch)
treea80d4c5453c8594fcedd962fae94ab3d6976ca70 /.github
parentd53109eaa890ab807b66961a89291cea3cd3c003 (diff)
downloadpolecat-07f6f5eda1c14a6658d8798bb8322e8ad03f50a2.tar.gz
polecat-07f6f5eda1c14a6658d8798bb8322e8ad03f50a2.zip
add CI via Github Actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml20
1 files changed, 20 insertions, 0 deletions
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
+