diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a1d341a3..65b2d26a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,3 +52,15 @@ jobs: with: name: Testfile path: test/etl_tests + + build-clang-10-osx: + runs-on: macos-10.15 + steps: + - uses: actions/checkout@v2 + - name: Build and run + run: | + export CC=clang + export CXX=clang++ + cmake -D BUILD_TESTS=ON ./ + make + ./test/etl_tests \ No newline at end of file