Skip to content

Update to dotnet10

Update to dotnet10 #46

Workflow file for this run

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