using 内部に移動 #22
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: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
build: | |
runs-on: ["windows-latest"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup-msbuild | |
uses: microsoft/setup-msbuild@v1.1 | |
- name: Setup NuGet.exe for use with actions | |
# You may pin to the exact commit or the version. | |
# uses: NuGet/setup-nuget@b2bc17b761a1d88cab755a776c7922eb26eefbfa | |
uses: NuGet/setup-nuget@v1.0.6 | |
- name: restore nuget packages | |
run: nuget restore Auditore.sln |