Added quotes #18
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 | ||
on: | ||
push: | ||
workflow_dispatch: | ||
env: | ||
BUILD_CONFIG: Release | ||
BUILD_DIR: build | ||
jobs: | ||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- name: linux | ||
os: ubuntu-latest | ||
generator: "Unix Makefiles" | ||
- name: macOS | ||
os: macos-latest | ||
generator: "Xcode" | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: "Build and test" | ||
shell: bash | ||
env: | ||
GENERATOR: ${{ matrix.generator }} | ||
run: | | ||
Check failure on line 33 in .github/workflows/build.yml GitHub Actions / BuildInvalid workflow file
|
||
ctest --build-and-test . ./build_$OSTYPE --build-generator "${{ env.GENERATOR }}" --test-command ctest -C ${{ env.$BUILD_CONFIG }} --verbose |