🧪 Unit Tests Status Check ( branch) #168
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: 🧪 Unit Tests Status Check | |
run-name: 🧪 Unit Tests Status Check (${{ github.base_ref }} branch) | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
run_tests: | |
runs-on: windows-latest | |
steps: | |
# Setup .NET | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
# Unit Tests | |
- name: Test | |
run: dotnet test --verbosity normal |