Skip to content

Release notes for 0.21.4 #399

Release notes for 0.21.4

Release notes for 0.21.4 #399

Workflow file for this run

name: .NET 5.0
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macOS-latest
dotnet: [5.0.202]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Setup .Net Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'
- name: Setup .NET 5
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore tools
run: dotnet tool restore
- name: Restore dependencies
run: dotnet restore
- name: Run build
run: dotnet fake build -t Test