From 037b7e381ef647f43687b98e3326649f6d778c15 Mon Sep 17 00:00:00 2001 From: finger42 <67188554+finger42@users.noreply.github.com> Date: Sun, 26 Jul 2020 18:07:32 +0200 Subject: [PATCH] Create first Github actions file On Ubuntu 18.04, build and run tests. --- .github/workflows/main.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..32736049 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,22 @@ +name: CI +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-18.04 + + steps: + - uses: actions/checkout@v2 + + - name: Setup cmake + run: cmake -DBUILD_TESTS=ON ./ + + - name: Compile + run: make + + - name: Run tests + run: ./test/etl_tests