Skip to content

Updates Windows path to test-liblevenshtein #82

Updates Windows path to test-liblevenshtein

Updates Windows path to test-liblevenshtein #82

Workflow file for this run

name: Test MacOS
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
# Set fail-fast to false to ensure that feedback is delivered for all
# matrix combinations. Consider changing this to true when your workflow
# is stable.
fail-fast: false
matrix:
os: [macos-latest]
build_type: [Debug, Release]
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-activate-base: false
environment-file: environment.yml
activate-environment: ll-cpp
miniforge-version: latest
use-mamba: true
channels: conda-forge
- name: Configure CMake
shell: bash -el {0}
run: cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DBUILD_TESTS=ON
- name: Build
shell: bash -el {0}
run: cmake --build build --config ${{ matrix.build_type }}
- name: Test
shell: bash -el {0}
run: ./build/test/test-liblevenshtein