Fixed reference to unknown job in CI workflow

This commit is contained in:
Alejandro Celaya 2022-08-27 09:19:55 +02:00
parent d54a2bde0f
commit b7f7288a4b

View File

@ -29,12 +29,12 @@ jobs:
with: with:
test-group: unit test-group: unit
api-tests-openswoole: openswoole-api-tests:
uses: './.github/workflows/ci-tests.yml' uses: './.github/workflows/ci-tests.yml'
with: with:
test-group: api test-group: api
api-tests-roadrunner: roadrunner-api-tests:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
strategy: strategy:
matrix: matrix:
@ -96,7 +96,7 @@ jobs:
api-mutation-tests: api-mutation-tests:
needs: needs:
- api-tests-openswoole - openswoole-api-tests
uses: './.github/workflows/ci-mutation-tests.yml' uses: './.github/workflows/ci-mutation-tests.yml'
with: with:
test-group: api test-group: api
@ -111,7 +111,7 @@ jobs:
upload-coverage: upload-coverage:
needs: needs:
- unit-tests - unit-tests
- api-tests - openswoole-api-tests
- cli-tests - cli-tests
- sqlite-db-tests - sqlite-db-tests
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04