Skip to content

Fix build workflow

Fix build workflow #29

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- master
pull_request:
branches:
- "*"
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
dotnet: [6.0.401]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- run: dotnet tool restore
- run: dotnet paket restore
- run: dotnet build
- run: dotnet run -p ./tests/**/*.fsproj