bumped version for release #93
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 6.0 | |
on: | |
pull_request: | |
push: | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
# Setup of multiple .NET versions at the same time seams to be broken | |
# The multiple versions approach shown at https://github.com/actions/setup-dotnet fails, so I decided to | |
# fall back to 2 separate installation runs. | |
- name: Setup .NET 6 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore, Build, Test | |
run: | | |
cd Source | |
dotnet --info | |
dotnet restore | |
dotnet build --no-restore | |
dotnet test --no-build --verbosity normal |