Bump xunit from 2.9.0 to 2.9.2 in the xunit group across 1 directory #65
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 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_FRAMEWORK: net8.0 | |
DOTNET_VERSION: 8.0.x | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: π§ Checkout | |
uses: actions/checkout@main | |
with: | |
fetch-depth: 0 # avoid shallow clone so nbgv can do its work | |
- name: π¨ Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: ποΈ Run dotnet build | |
id: build | |
run: dotnet build -c release | |
- name: π¨ Run dotnet format | |
id: format | |
run: dotnet format --verbosity diagnostic --verify-no-changes --no-restore | |
- name: π§ͺ Run dotnet test | |
id: test | |
run: dotnet test -c release --no-restore |