Bump xunit from 2.5.0 to 2.5.1 (#158) #7
Workflow file for this run
This file contains 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 Publish | |
on: | |
push: | |
# branches: | |
# - main | |
tags: | |
- '*' | |
paths-ignore: | |
- README.md | |
- LICENSE | |
- CHANGELOG.md | |
- docs/** | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
env: | |
buildConfiguration: 'Release' | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Required for GitVersion | |
- name: Install GitVersion | |
uses: gittools/actions/gitversion/setup@v0 | |
with: | |
versionSpec: '5.x' | |
- name: Determine Version | |
uses: gittools/actions/gitversion/execute@v0 | |
with: | |
useConfigFile: true | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.x | |
source-url: https://api.nuget.org/v3/index.json | |
env: | |
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_API_KEY }} | |
- name: Start MongoDB | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: '6' | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: > | |
dotnet build | |
--configuration $buildConfiguration | |
--no-restore | |
- name: Test | |
run: > | |
dotnet test | |
--configuration $buildConfiguration | |
--no-build | |
--verbosity normal | |
--collect "Code coverage" | |
- name: Pack | |
run: > | |
dotnet pack | |
--configuration $buildConfiguration | |
--no-build | |
--verbosity normal | |
--output $GITHUB_WORKSPACE/drop | |
-p:PackageVersion=$GITVERSION_NUGETVERSION | |
- name: Publish Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ${{ github.workspace }}/drop/* | |
name: drop | |
- name: Publish to NuGet.org | |
if: startsWith(github.ref, 'refs/tags/') | |
run: > | |
dotnet nuget push "$GITHUB_WORKSPACE/drop/*" | |
-k ${{ secrets.NUGET_API_KEY }} | |
--skip-duplicate |