github.com/yaoapp/kun@v0.9.0/.github/actions/setup-db/action.yml (about)

     1  inputs:
     2    kind:
     3      description: "Chose the kind of database (MySQL8.0, MySQL5.7, Postgres9.6, Postgres14.0, SQLite3)"
     4      required: true
     5    db:
     6      description: "The name of database"
     7      required: false
     8      default: "github"
     9    user:
    10      description: "The user of database"
    11      required: false
    12      default: "github"
    13    password:
    14      description: "The passowrd of database"
    15      required: false
    16      default: "123456"
    17  runs:
    18    using: "docker"
    19    image: "Dockerfile"