Skip to content

fix: add cosine similarity to similarity metric help #66

fix: add cosine similarity to similarity metric help

fix: add cosine similarity to similarity metric help #66

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# compiler: [gcc, clang]
compiler: [gcc]
steps:
- uses: actions/checkout@v3
- name: Configure CMake
env:
CC: ${{ matrix.compiler }}
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
# - name: Test
# working-directory: ${{github.workspace}}/build
# run: ctest -C ${{env.BUILD_TYPE}}