cleanup of readme and documentation #24
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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| env: | |
| DOTNET_VERSION: '10.0.x' | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: ${{ env.DOTNET_VERSION }} | |
| - name: Setup MSBuild | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Setup NuGet | |
| uses: NuGet/setup-nuget@v2 | |
| - name: Restore .NET projects | |
| run: | | |
| dotnet restore ResultR/ResultR.csproj | |
| dotnet restore ResultR.Validation/ResultR.Validation.csproj | |
| dotnet restore ResultR.Tests/ResultR.Tests.csproj | |
| dotnet restore ResultR.Validation.Tests/ResultR.Validation.Tests.csproj | |
| dotnet restore ResultR.Benchmarks/ResultR.Benchmarks.csproj | |
| working-directory: src | |
| - name: Restore VSToolkit (NuGet) | |
| run: nuget restore ResultR.VSToolkit/ResultR.VSToolkit.csproj | |
| working-directory: src | |
| - name: Build .NET projects | |
| run: | | |
| dotnet build ResultR/ResultR.csproj --configuration Release --no-restore | |
| dotnet build ResultR.Validation/ResultR.Validation.csproj --configuration Release --no-restore | |
| dotnet build ResultR.Tests/ResultR.Tests.csproj --configuration Release --no-restore | |
| dotnet build ResultR.Validation.Tests/ResultR.Validation.Tests.csproj --configuration Release --no-restore | |
| dotnet build ResultR.Benchmarks/ResultR.Benchmarks.csproj --configuration Release --no-restore | |
| working-directory: src | |
| - name: Build VSToolkit (MSBuild) | |
| run: msbuild ResultR.VSToolkit/ResultR.VSToolkit.csproj /p:Configuration=Release /p:DeployExtension=false /p:Version=0.0.0 | |
| working-directory: src | |
| - name: Test | |
| run: | | |
| dotnet test ResultR.Tests/ResultR.Tests.csproj --configuration Release --no-build --verbosity normal | |
| dotnet test ResultR.Validation.Tests/ResultR.Validation.Tests.csproj --configuration Release --no-build --verbosity normal | |
| working-directory: src |