Skip to content

(Preparation for) Multi-root workspace support #1016

(Preparation for) Multi-root workspace support

(Preparation for) Multi-root workspace support #1016

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
timeout-minutes: 10
strategy:
matrix:
os: [windows-latest, ubuntu-24.04]
dotnet: [9.0.x]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore tools
run: dotnet tool restore
- name: Run Fantomas check
run: dotnet fantomas --check .
- name: Run Build
run: dotnet build
- name: Run Tests
run: dotnet test --no-build