Update dependency System.Collections.Immutable to 10.0.10 #1573
Workflow file for this run
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: build-and-test | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| env: | |
| PipelineEnvironment: true | |
| NUGET_XMLDOC_MODE: skip | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| persist-credentials: false | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Restore tests | |
| run: dotnet restore test/Soenneker.Utils.AutoBogus.Tests/Soenneker.Utils.AutoBogus.Tests.csproj --verbosity minimal | |
| - name: Build tests | |
| run: dotnet build test/Soenneker.Utils.AutoBogus.Tests/Soenneker.Utils.AutoBogus.Tests.csproj --configuration Release --no-restore --verbosity minimal | |
| - name: Test | |
| run: dotnet test --project test/Soenneker.Utils.AutoBogus.Tests/Soenneker.Utils.AutoBogus.Tests.csproj --configuration Release --no-build --no-restore --verbosity minimal | |
| - name: Restore library | |
| run: dotnet restore src/Soenneker.Utils.AutoBogus/Soenneker.Utils.AutoBogus.csproj --verbosity minimal | |
| - name: Build library | |
| run: dotnet build src/Soenneker.Utils.AutoBogus/Soenneker.Utils.AutoBogus.csproj --configuration Release --no-restore --verbosity minimal | |
| - name: Pack | |
| run: dotnet pack src/Soenneker.Utils.AutoBogus/Soenneker.Utils.AutoBogus.csproj --configuration Release --no-build --no-restore --output . --verbosity minimal |