Skip to content

Merge pull request #437 from MicrosoftLearning/petender-patch-1 #632

Merge pull request #437 from MicrosoftLearning/petender-patch-1

Merge pull request #437 from MicrosoftLearning/petender-patch-1 #632

Workflow file for this run

name: eShopOnWeb Build and Test
#Triggers (uncomment line below to use it)
#on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: "8.0.x"
dotnet-quality: "preview"
- name: Build with dotnet
run: dotnet build ./eShopOnWeb.sln --configuration Release
- name: Test with dotnet
run: dotnet test ./eShopOnWeb.sln --configuration Release