Skip to content

feat: add AVLSet implementation, unit tests and benchmarks #47

feat: add AVLSet implementation, unit tests and benchmarks

feat: add AVLSet implementation, unit tests and benchmarks #47

Workflow file for this run

name: .NET Tests
on:
push:
branches:
- main
pull_request:
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "10.0"
- name: Restore Fantomas tool
run: dotnet tool restore
- name: Check formatting with Fantomas
run: dotnet fantomas --check .
test:
runs-on: ubuntu-latest
needs: format-check
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "10.0"
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Run tests
run: dotnet test --no-build