Skip to content

Let's try the real thing #202

Let's try the real thing

Let's try the real thing #202

Workflow file for this run

name: Test pushes to dev
on:
push:
# https://stackoverflow.com/questions/58139406/only-run-job-on-specific-branch-with-github-actions
branches:
- dev
jobs:
validate:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
# https://stackoverflow.com/a/70552262/14582
- run: dotnet test --nologo -l:"console;verbosity=normal"