diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index db25c97..157cc1a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,6 +20,9 @@ jobs: - name: Restore dependencies run: dotnet restore src/ + - name: Run tests + run: dotnet test src/ --configuration Release --no-build + - name: Build run: dotnet build src/ --configuration Release --no-restore