Get an individual response curve from eqNBandParameteric #67
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: Build Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build_feature: | |
name: Build Tests | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
include: | |
- os: ubuntu-latest | |
name: linux | |
testExe: build/sst-effects-test | |
- os: macos-latest | |
name: mac | |
testExe: build/sst-effects-test | |
- os: windows-latest | |
name: win | |
testExe: build/Release/sst-effects-test.exe | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Build Smoke test | |
run: | | |
cmake -S . -B ./build -DCMAKE_BUILD_TYPE=Release -DSST_EFFECTS_BUILD_TESTS=TRUE -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" | |
cmake --build ./build --config Release | |
- name: Run Smoke Test | |
run: | | |
ls ${{ matrix.testExe }} | |
${{ matrix.testExe }} |