Skip to content

Use double quote in input parameter #1050

Use double quote in input parameter

Use double quote in input parameter #1050

Workflow file for this run

name: 'build-test'
on: # rebuild any PRs and main branch changes
pull_request:
push:
jobs:
lint_unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
npm install
- run: |
npm run all
e2e_test:
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0'
- uses: ./
with:
solutionPath: TestSolution/TestSolution.sln
properties: "Platform=Mixed Platforms;Configuration=Debug"