From b7f7288a4b3a8fe3bff26753e941652469c8b0d5 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 27 Aug 2022 09:19:55 +0200 Subject: [PATCH] Fixed reference to unknown job in CI workflow --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 804514db..60d3da2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,12 +29,12 @@ jobs: with: test-group: unit - api-tests-openswoole: + openswoole-api-tests: uses: './.github/workflows/ci-tests.yml' with: test-group: api - api-tests-roadrunner: + roadrunner-api-tests: runs-on: ubuntu-22.04 strategy: matrix: @@ -96,7 +96,7 @@ jobs: api-mutation-tests: needs: - - api-tests-openswoole + - openswoole-api-tests uses: './.github/workflows/ci-mutation-tests.yml' with: test-group: api @@ -111,7 +111,7 @@ jobs: upload-coverage: needs: - unit-tests - - api-tests + - openswoole-api-tests - cli-tests - sqlite-db-tests runs-on: ubuntu-22.04