Skip to content

70 multi target

70 multi target #7

Workflow file for this run

name: DOTNET TEST
on:
pull_request:
types: [opened, reopened, synchronize]
branches:
- "**"
jobs:
dotnet-test:
env:
BUILD_CONFIG: 'Release'
SOLUTION: './source/**.sln'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Restore dependencies
run: dotnet restore $SOLUTION
- name: Build Solution
run: dotnet build $SOLUTION --no-restore
- name: Test Solution
run: sudo dotnet test $SOLUTION --no-restore --verbosity normal