From c6760a6c2ff4d060f32f3d4f33b20d44f06c9993 Mon Sep 17 00:00:00 2001 From: Mike Curn Date: Tue, 13 May 2025 12:56:46 -0700 Subject: [PATCH] Update deploy.yml exclude example tests --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2af74f4..9033226 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -38,7 +38,7 @@ jobs: - name: Build run: dotnet build -p:Version=${{ env.buildVersion }} -p:ContinuousIntegrationBuild=True --no-restore --configuration Release - name: Test - run: dotnet test --no-build --configuration Release --verbosity normal + run: dotnet test --filter FullyQualifiedName!~ExampleTests --no-build --configuration Release --verbosity normal - name: Pack if: startsWith(github.ref, 'refs/tags/v') run: dotnet pack -p:PackageVersion=${{ env.nugetVersion }} --configuration Release -o ${{github.workspace}}/IntelliTect.SelenatePack --no-build