Skip to content

Bump xunit from 2.8.0 to 2.9.0 #362

Bump xunit from 2.8.0 to 2.9.0

Bump xunit from 2.8.0 to 2.9.0 #362

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
paths-ignore:
- '**/README*'
- '**/CHANGELOG.md'
- '**/images/*'
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Publish
id: publish_nuget
uses: alirezanet/[email protected]
with:
PROJECT_FILE_PATH: src/Hit/Hit.csproj
NUGET_KEY: ${{secrets.NUGET_KEY}}
VERSION_REGEX: ^\s*<Version>(.*)<\/Version>$