70 multi target #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |