Skip to content

Bump the xunit group with 2 updates #31

Bump the xunit group with 2 updates

Bump the xunit group with 2 updates #31

Workflow file for this run

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