Skip to content

Merge pull request #86 from chekhovana/clustering #131

Merge pull request #86 from chekhovana/clustering

Merge pull request #86 from chekhovana/clustering #131

Workflow file for this run

name: .NET
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build
working-directory: src
run: dotnet build --configuration Release
- name: Test
working-directory: tests
run: dotnet test --configuration Release