Fix issue with folder names containing spaces failing move. #43
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: .NET | |
on: | |
push: | |
branches: [ production ] | |
pull_request: | |
branches: [ production ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 5.0.x | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v1.0.2 | |
- name: Setup NuGet | |
uses: NuGet/setup-nuget@v1.0.5 | |
- name: Restore dependencies | |
run: nuget restore rpf2fivem.sln | |
- name: Build App | |
run: msbuild rpf2fivem.sln /p:Configuration=Release | |
- name: Test | |
run: dotnet test rpf2fivem.sln --no-build --verbosity normal |