Ok the new Stale.sln screwed up the defaults, so be explicit now #229
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/[email protected] | |
- name: Setup .NET | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 8.0.x | |
# https://stackoverflow.com/a/70552262/14582 | |
- name: Run tests | |
run: | | |
dotnet test --nologo -l:"console;verbosity=normal" OkTools.sln |