You've already forked setup-msbuild
mirror of
https://github.com/microsoft/setup-msbuild.git
synced 2025-07-31 10:47:23 +07:00
Initial developer commit
This commit is contained in:
28
.github/workflows/test.yml
vendored
Normal file
28
.github/workflows/test.yml
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
name: "build-test-dev"
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- dev
|
||||
paths-ignore:
|
||||
- '*.md'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Setup MSBuild
|
||||
id: setup_msbuild
|
||||
uses: ./
|
||||
with:
|
||||
vs-version: "[16.4,16.5]"
|
||||
|
||||
- name: echo msbuild path
|
||||
run: echo ${{ steps.setup_msbuild.outputs.msbuildPath }}
|
||||
|
||||
- name: echo vswhere
|
||||
run: vswhere.exe
|
||||
|
||||
- name: echo MSBuild
|
||||
run: msbuild -version
|
Reference in New Issue
Block a user