From 198fbc175686be0e871d6c3ce439cee2ad2ee03e Mon Sep 17 00:00:00 2001 From: Maxim Devaev Date: Tue, 12 May 2020 08:46:39 +0300 Subject: [PATCH] Create ccpp.yml --- .github/workflows/ccpp.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/ccpp.yml diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml new file mode 100644 index 0000000..1a82e20 --- /dev/null +++ b/.github/workflows/ccpp.yml @@ -0,0 +1,21 @@ +name: CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: deps + run: sudo apt-get install python3 build-essential libevent-dev libjpeg62-turbo-dev uuid-dev libbsd-dev + - name: make + run: make + - name: make tox + run: make tox