Reconfigure .editorconfig and apply code cleanup for all #4
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: tests | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
deploy: | |
runs-on: windows-latest | |
steps: | |
# Checkout the code | |
- uses: actions/checkout@v3 | |
# Install .NET Core SDK | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.0.x' | |
dotnet-quality: 'preview' | |
# Perform unit tests | |
- name: Perform unit tests | |
run: dotnet test IPAddressRange.Test -l "console;verbosity=normal" -v:q --nologo | |