diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2020-08-19 00:11:25 +0200 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2020-08-19 00:11:25 +0200 |
commit | 07f6f5eda1c14a6658d8798bb8322e8ad03f50a2 (patch) | |
tree | a80d4c5453c8594fcedd962fae94ab3d6976ca70 | |
parent | d53109eaa890ab807b66961a89291cea3cd3c003 (diff) | |
download | polecat-07f6f5eda1c14a6658d8798bb8322e8ad03f50a2.tar.gz polecat-07f6f5eda1c14a6658d8798bb8322e8ad03f50a2.zip |
add CI via Github Actions
-rw-r--r-- | .github/workflows/ci.yml | 20 |
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 + |