Skip to content

feat: release as v3.0.0 #44

feat: release as v3.0.0

feat: release as v3.0.0 #44

Workflow file for this run

name: Build and Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
dotnet6: [6.0.400]
dotnet8: [8.0.400]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core 6 (for build)
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet6 }}
- name: Setup .NET Core 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet8 }}
- name: Install local tools
run: dotnet tool restore
- name: Paket Restore
run: dotnet paket restore
- name: Build and Test
run: dotnet fake run build.fsx