diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5d3896a..e7bec9e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,9 +23,13 @@ jobs: - uses: actions/setup-dotnet@v4 with: dotnet-version: 8.x + - name: Restore Tools + run: dotnet tool restore - name: Restore run: dotnet restore ${{ env.SOLUTION }} - name: Build run: dotnet build ${{ env.SOLUTION }} -c Release --no-restore + - name: Show Version + run: dotnet tool run dotnet-gitversion - name: Test run: dotnet test ${{ env.SOLUTION }} -c Release --no-build