For now disable parallel build to see if CI will be happier #216
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: Validate Dev Branch | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ dev ] | |
jobs: | |
validate: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3.2.0 | |
with: | |
dotnet-version: 7.0.x | |
# https://stackoverflow.com/a/70552262/14582 | |
- name: Run tests | |
run: | | |
dotnet test --nologo -l:"console;verbosity=normal" |