add SwissTable-style mirroring, compaction scopes, and probe-safe APIs #103
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: .NET | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Restore | |
| run: dotnet restore Faster.Map.sln | |
| - name: Build | |
| run: dotnet build Faster.Map.sln --configuration Release --no-restore | |
| - name: Test | |
| run: dotnet test Faster.Map.sln --configuration Release --no-build --verbosity normal |