Skip to content

fix: adjust timeout settings in tests #167

fix: adjust timeout settings in tests

fix: adjust timeout settings in tests #167

Workflow file for this run

name: MacOS
on: [ push ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: macos-latest
environment: MacOS
strategy:
matrix:
dotnet-version: [ 10.0.x ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore dependencies
run: dotnet restore ./src
- name: Build solution
run: dotnet build -c Release ./src --verbosity minimal
- name: Run tests and collect coverage
run: dotnet test -c Release ./src --verbosity normal --no-build --no-restore