Merge pull request #1 from finger42/github-actions

Create first Github actions file
This commit is contained in:
finger42 2020-07-26 18:13:41 +02:00 committed by GitHub
commit 2dd0fe80a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

22
.github/workflows/main.yml vendored Normal file
View File

@ -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