Bump NUnit from 4.2.2 to 4.3.0 #169
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: dotnet package | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
permissions: write-all # required for dependabot checks to be able to to export test reports | |
services: | |
azurite: | |
image: mcr.microsoft.com/azure-storage/azurite | |
ports: | |
- 10000:10000 | |
# No simple reciept to curl it, so, let's just wait | |
options: >- | |
--health-cmd "sleep 5" | |
--health-interval 3s | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "6" | |
# TODO: Enable central package management before enabling this feature https://learn.microsoft.com/en-us/nuget/consume-packages/central-package-management | |
cache: false | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Test | |
run: | | |
dotnet test --no-restore --no-build --configuration Release \ | |
--logger trx\;LogFileName=${{ github.workspace }}/Tests.trx \ | |
--logger console | |
- name: Tests Report | |
if: success() || failure() | |
uses: dorny/test-reporter@v1 | |
with: | |
name: "Tests" | |
path: "${{ github.workspace }}/*.trx" | |
reporter: "dotnet-trx" | |
- name: Get tag name | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | |
id: vars | |
run: | | |
echo ::set-output name=tag::${GITHUB_REF#refs/*/v} | |
- name: Push the package | |
if: steps.vars.outputs.tag != null | |
run: | | |
dotnet pack --no-restore --no-build --configuration Release --include-symbols --include-source -p:SymbolPackageFormat=snupkg -p:PackageVersion=${{ steps.vars.outputs.tag }} -o output/${{ steps.vars.outputs.tag }} | |
dotnet nuget push output/${{ steps.vars.outputs.tag }}/*.nupkg --api-key ${{ secrets.NUGET_API_TOKEN }} --source https://api.nuget.org/v3/index.json | |
- name: Create release | |
if: steps.vars.outputs.tag != null | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
output/${{ steps.vars.outputs.tag }}/*.nupkg | |
generate_release_notes: true | |
# TODO: Determine the prerelease versions using the NuGet convention https://learn.microsoft.com/en-us/nuget/create-packages/prerelease-packages | |
prerelease: false | |
draft: false |