Skip to content

Small improvements to README.md files #559

Small improvements to README.md files

Small improvements to README.md files #559

Workflow file for this run

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