We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9b36d3 commit a0c7572Copy full SHA for a0c7572
1 file changed
.github/workflows/integration-test.yaml
@@ -57,17 +57,18 @@ jobs:
57
expect "Field type" { send "string\r" }
58
expect "Field length" { send "\r" }
59
expect "nullable" { send "no\r" }
60
- expect "New property name" { send "price\r" }
+ expect "Add another property" { send "price\r" }
61
expect "Field type" { send "integer\r" }
62
63
- expect "New property name" { send "\r" }
+ expect "Add another property" { send "\r" }
64
expect eof
65
EOD
66
67
- name: Create DB schema
68
working-directory: e2e-app
69
run: |
70
- php bin/console doctrine:database:create --if-not-exists -q
+ # Ensure DB file exists for SQLite, ignore if already present
71
+ touch var/data.db
72
php bin/console doctrine:schema:create -q
73
74
- name: Generate Dashboard and CRUD
0 commit comments