fix mishandling of genetic load initial parameters #448
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: check | |
on: push | |
jobs: | |
check: | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-13] | |
include: | |
- os: windows-latest | |
path_to_exe: ./build/Debug/RangeShifter.exe | |
- os: ubuntu-latest | |
path_to_exe: ./build/RangeShifter | |
- os: macos-13 | |
path_to_exe: ./build/RangeShifter | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: build | |
run: | | |
mkdir build | |
cd build | |
cmake ../ | |
cmake --build . | |
- name: run | |
run: ${{ matrix.path_to_exe }} run_on_gha/rs_test_project/ | |
- name: check_output | |
if: ${{ matrix.os != 'macos-13' }} # no check until I get access to a machine with Xcode 15 | |
run: | | |
cd ./run_on_gha/rs_test_project | |
# bash check_output.bash # disable until new genetics stable |