Fix: Instrument Improvising #1258
Workflow file for this run
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: .NET | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: "6.0.100" | |
include-prerelease: true | |
- name: Build | |
run: dotnet build | |
- name: Test | |
run: dotnet test --no-build --verbosity normal | |
dotnet-format: | |
runs-on: windows-latest | |
steps: | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: "6.0.100" | |
include-prerelease: true | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Install dotnet-format tool | |
run: dotnet tool install -g dotnet-format | |
- name: Run dotnet-format | |
run: dotnet-format --check --no-restore |