From a12840e02bb549ba92687e3f25e583456ac093ec Mon Sep 17 00:00:00 2001 From: briskt <3172830+briskt@users.noreply.github.com> Date: Thu, 22 Feb 2024 09:50:19 -0700 Subject: [PATCH] fix workflow file - only reference the remaining test --- .github/workflows/test-and-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-publish.yml b/.github/workflows/test-and-publish.yml index 021bbaf..19cce7c 100644 --- a/.github/workflows/test-and-publish.yml +++ b/.github/workflows/test-and-publish.yml @@ -4,7 +4,7 @@ on: push: jobs: - unit-tests: + tests: name: Unit Tests runs-on: ubuntu-latest steps: @@ -19,7 +19,7 @@ jobs: build-and-publish: name: Build and Publish - needs: [unit-tests,api-tests,psr2-check] + needs: tests runs-on: ubuntu-latest steps: - name: Checkout code