From 1fc213941d2ec79daa989ee908b2f602f175e439 Mon Sep 17 00:00:00 2001 From: Marco Szulik Date: Wed, 18 Dec 2024 09:23:19 +0100 Subject: [PATCH] fix workflow syntax --- .github/workflows/tests-matrix.yml | 51 +++++++++++++++--------------- 1 file changed, 26 insertions(+), 25 deletions(-) diff --git a/.github/workflows/tests-matrix.yml b/.github/workflows/tests-matrix.yml index 58da123..c9a1808 100644 --- a/.github/workflows/tests-matrix.yml +++ b/.github/workflows/tests-matrix.yml @@ -1,30 +1,31 @@ on: workflow_call: - DATABASE_IMAGE: - description: The Docker image to use for the database. - required: true - type: string - DATABASE_PORT: - description: The port of the database. - required: true - type: string - DATABASE_CONNECTION: - description: The database connection to use. - required: true - type: string - DATABASE_HOST: - description: The host of the database. - required: false - type: string - default: 127.0.0.1 - DATABASE_USERNAME: - description: The username to use for the database. - required: true - type: string - DATABASE_OPTIONS: - description: The options to use for the database, such as health check. - required: true - type: string + inputs: + DATABASE_IMAGE: + description: The Docker image to use for the database. + required: true + type: string + DATABASE_PORT: + description: The port of the database. + required: true + type: string + DATABASE_CONNECTION: + description: The database connection to use. + required: true + type: string + DATABASE_HOST: + description: The host of the database. + required: false + type: string + default: 127.0.0.1 + DATABASE_USERNAME: + description: The username to use for the database. + required: true + type: string + DATABASE_OPTIONS: + description: The options to use for the database, such as health check. + required: true + type: string jobs: execute-test-matrix: