114: Moved Correlation package to SOFTURE project #47
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: ASSISTENTE - RUN UNIT TESTS | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: ⚙️ Setup .NET 8 SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: 🔗 Restore dependencies | |
run: dotnet restore ./API | |
- name: 📂 Build project | |
run: dotnet build ./API --no-restore | |
- name: 🚀 Run tests | |
run: dotnet test ./API --no-build --verbosity normal |