Skip to content

Bump the nuget group with 23 updates #552

Bump the nuget group with 23 updates

Bump the nuget group with 23 updates #552

Workflow file for this run

name: .NET Build & Test
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
permissions:
contents: read
env:
BonesBackendConfiguration__UseInMemoryDb: true
ASPNETCORE_ENVIRONMENT: "Development"
DOTNET_ENVIRONMENT: "Development"
steps:
- name: Checkout Repo
uses: actions/checkout@v6
- name: Setup Environment
uses: ./.github/actions/setup-env
- name: Build
run: dotnet build --configuration Debug --no-incremental
#- name: Check for uncommitted changes to generated files
# run: git diff --quiet || exit 1
- name: Test
run: dotnet test --no-build