Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,13 @@ jobs:
build:
runs-on: windows-latest
continue-on-error: false

name: "Build and run unit tests"
steps:
- name: Set git core.longpaths flag
run: |
git config --system core.longpaths true

- name: Checkout repository
uses: actions/[email protected]

Expand All @@ -36,7 +41,7 @@ jobs:

- name: Strong name bypass
run: |
regedit /s .\build\strongNameBypass.reg
regedit /s .\build\strongNameBypass.reg

- name: Run the tests
run: dotnet test Wilson.sln --collect:"XPlat Code Coverage" --settings:./build/CodeCoverage.runsettings
Expand Down
Loading