Change mv_freq_cmp for decreasing frequency order. #279
Workflow file for this run
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: AMD64-Linux-OSX-Windows-test | |
on: [push, workflow_dispatch] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: make test | |
if: runner.os != 'Windows' | |
run: make test | |
- name: cmake test | |
if: runner.os == 'Windows' | |
run: | | |
cmake -G 'Visual Studio 16 2019' -A x64 -DBUILD_TESTING=ON | |
cmake --build . --config Release | |
ctest --verbose --output-on-failure |