diff --git a/.github/workflows/verification.yml b/.github/workflows/verification.yml index e37240307..5a572ec04 100644 --- a/.github/workflows/verification.yml +++ b/.github/workflows/verification.yml @@ -14,7 +14,7 @@ on: workflow_dispatch: jobs: - verify: + verify-bunit: strategy: fail-fast: false matrix: @@ -52,18 +52,16 @@ jobs: run: dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org --configfile $env:APPDATA\NuGet\NuGet.Config continue-on-error: true - - name: ๐Ÿ” Restore packages - run: dotnet restore - - name: ๐Ÿ› ๏ธ Building library in release mode - run: dotnet build -c release --no-restore -p:ContinuousIntegrationBuild=true + run: dotnet build -c release -p:ContinuousIntegrationBuild=true - name: ๐Ÿงช Run unit tests run: dotnet test -c release --no-build - name: ๐Ÿ—ณ๏ธ Create library packages run: | - dotnet pack -c release --no-build -o ${GITHUB_WORKSPACE}/packages + dotnet pack src/bunit/ -c release -o ${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true + dotnet pack -c release -o ${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true dotnet pack src/bunit.template/ -c release -o ${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true - name: โœ” Verify template