2nd workflow attempt

This commit is contained in:
2023-03-22 21:07:31 +01:00
parent 898c5d8d05
commit c3665b9f3b

View File

@@ -19,6 +19,9 @@ on:
concurrency:
group: mau
cancel-in-progress: true
env:
DOTNET_INSTALL_DIR: "./.dotnet"
jobs:
build:
@@ -29,12 +32,12 @@ jobs:
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@main
with:
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test
run: dotnet test --no-restore --verbosity normal