Skip to content

Workflow file for this run

on:
pull_request:
branches:
- master
jobs:
build:
name: Build Application
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '3.1.x'
- run: dotnet build
build:
name: Build Application Cpp
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1
with:

Check failure on line 21 in .github/workflows/pr-build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-build.yml

Invalid workflow file

You have an error in your yaml syntax on line 21
arch: amd64-x86
- name: Build something requiring CL.EXE
run: |
cmake -G "NMake Makefiles" .
nmake
# ...