Run queries twice to test for idempotence (#159) #570
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
Run-Tests: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install OpenBLAS | |
run: sudo apt install libopenblas-dev | |
- uses: actions/checkout@v3 | |
- name: Configure CMake | |
run: cmake -S ./src -B ./src/build -DCMAKE_BUILD_TYPE=Debug -DTILEDB_VS_ENABLE_BLAS=ON | |
- name: Build | |
run: cmake --build ./src/build -j3 | |
- name: Run Tests | |
run: cmake --build ./src/build --target check-ci |