Skip to content

feat: clean architecture fix #271

feat: clean architecture fix

feat: clean architecture fix #271

Workflow file for this run

name: eShop-mint Build and Test
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
include-prerelease: true
- name: Build with dotnet
run: dotnet build ./Mint.sln
- name: Test with dotnet
run: dotnet test ./Mint.sln --configuration Release