You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
# Setup and start DDEV action
7
7
8
-
This **GitHub action** starts [DDEV](https://github.com/drud/ddev/) with your project's configuration from the directory `.ddev`.
8
+
This **GitHub action** starts [DDEV](https://github.com/ddev/ddev/) with your project's configuration from the directory `.ddev`.
9
9
10
10
The idea is to reuse the same environment that you are maintaining for development anyways for automated acceptance testing, thus saving on maintaining a separate CI-configuration.
11
11
@@ -18,7 +18,7 @@ on: [push, pull_request]
18
18
19
19
jobs:
20
20
test:
21
-
runs-on: ubuntu-22.04 # tested on: 20.04/22.04
21
+
runs-on: ubuntu-latest
22
22
steps:
23
23
- uses: actions/checkout@v1
24
24
- name: Setup DDEV
@@ -27,8 +27,8 @@ jobs:
27
27
# example: composer install
28
28
- run: ddev composer install
29
29
30
-
# example: fill database
31
-
- run: ddev mysql < data/db.sql
30
+
# example: populate database
31
+
- run: ddev import-db --file=data/db.sql.gz
32
32
33
33
# ... and so on. For example:
34
34
- run: ddev exec bin/myAcceptanceTests.sh
@@ -84,7 +84,7 @@ default: `latest`
84
84
```yaml
85
85
- uses: ddev/github-action-setup-ddev@v1
86
86
with:
87
-
version: 1.22.4
87
+
version: 1.24.7
88
88
```
89
89
90
90
### installScriptUrl
@@ -112,7 +112,7 @@ Example with custom script source:
0 commit comments