Update dependency Soenneker.Extensions.MethodInfo to 4.0.363 #3500
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@v6 | |
| 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.BackgroundQueue.Tests/Soenneker.Utils.BackgroundQueue.Tests.csproj --verbosity minimal | |
| - name: Build tests | |
| run: dotnet build test/Soenneker.Utils.BackgroundQueue.Tests/Soenneker.Utils.BackgroundQueue.Tests.csproj --configuration Release --no-restore --verbosity minimal | |
| - name: Test | |
| run: dotnet test test/Soenneker.Utils.BackgroundQueue.Tests/Soenneker.Utils.BackgroundQueue.Tests.csproj --configuration Release --no-build --no-restore --verbosity minimal | |
| - name: Pack | |
| run: dotnet pack src/Soenneker.Utils.BackgroundQueue/Soenneker.Utils.BackgroundQueue.csproj --configuration Release --no-build --no-restore --output . --verbosity minimal |