Skip to content

Commit

Permalink
fix workflow syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mszulik committed Dec 18, 2024
1 parent b2d343a commit 1fc2139
Showing 1 changed file with 26 additions and 25 deletions.
51 changes: 26 additions & 25 deletions .github/workflows/tests-matrix.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit 1fc2139

Please sign in to comment.