Skip to content

Bump xunit from 2.9.1 to 2.9.2 in the all-dependencies group (#703) #549

Bump xunit from 2.9.1 to 2.9.2 in the all-dependencies group (#703)

Bump xunit from 2.9.1 to 2.9.2 in the all-dependencies group (#703) #549

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
paths-ignore:
- 'doc/**'
- 'readme.md'
jobs:
build:
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- uses: actions/checkout@v4
- name: Test
run: dotnet test -c Release
- name: Test - Compiled
run: dotnet test --configuration Release /p:Compiled=true
- name: Pack
run: |
PACKAGE_PATH="${GITHUB_WORKSPACE}/artifacts"
dotnet pack --property:PackageOutputPath=$PACKAGE_PATH --configuration Release -p:PackageVersion=$GITHUB_RUN_NUMBER -p:ContinuousIntegrationBuild=True
- name: Publish on MyGet
run: dotnet nuget push "artifacts/*.nupkg" --api-key ${{ secrets.MYGET_API_KEY }} --skip-duplicate --source https://www.myget.org/F/fluid/api/v2/package