Skip to content

.NET 6.0

.NET 6.0 #48

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.100]
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