Skip to content

Update comment

Update comment #1

Workflow file for this run

name: PR
on:
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: windows-2022
if: contains(github.event.head_commit.message, 'ci skip') == false
steps:
- uses: actions/checkout@v2
- uses: microsoft/[email protected]
with:
msbuild-architecture: x64
- uses: nuget/setup-nuget@v1
with:
nuget-version: 'latest'
- name: NuGet restore
run: nuget restore DXNET.sln
- name: Build
run: msbuild DXNET.sln -p:Configuration=Release -m