Let's turn this back on and try the skip thing builtin to github #203
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: | |
push: | |
# https://stackoverflow.com/questions/58139406/only-run-job-on-specific-branch-with-github-actions | |
branches: | |
- dev | |
jobs: | |
validate: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- uses: actions/setup-dotnet@v3.2.0 | |
with: | |
dotnet-version: '7.0.x' | |
# https://stackoverflow.com/a/70552262/14582 | |
- run: dotnet test --nologo -l:"console;verbosity=normal" |