* migration to .net 7 * remove temp memory database * adapt global.json .net 7 * adapt Rich Code Navigation to .net 7 * update and clean run for .net 7 * update .net ef tool Co-authored-by: cedri <cedri@BAS>
23 lines
517 B
YAML
23 lines
517 B
YAML
name: eShopOnWeb Build and Test
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v1
|
|
with:
|
|
dotnet-version: '7.0.x'
|
|
include-prerelease: true
|
|
|
|
- name: Build with dotnet
|
|
run: dotnet build ./eShopOnWeb.sln --configuration Release
|
|
|
|
- name: Test with dotnet
|
|
run: dotnet test ./eShopOnWeb.sln --configuration Release
|