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
Your extension's package contents must be located at the root level of the repository. That is, your extension's `composer.json` must be in the **root of the repository**, not inside a subdirectory within the repository.
16
16
17
-
On GitHub.com, go to your extension's repository, click **Add file → Create new file**, name it `.github/workflows/tests.yml`, add the workflow content shown below, and commit the file. Make sure to replace `acme/demo` with your actual extension vendor/package name, and optionally you may adjust any of the branch names and other checks.
17
+
On GitHub.com, go to your extension's repository, click **Add file → Create new file**, name it `.github/workflows/tests.yml`, add the workflow content shown below, and commit the file.
18
+
19
+
> ‼️ Make sure to replace `acme/demo` with your actual extension vendor/package name, and adjust the branch names as needed.
18
20
19
21
```yaml
20
22
name: Tests
@@ -40,20 +42,20 @@ jobs:
40
42
EXTNAME: acme/demo # Your extension vendor/package name (required)
41
43
```
42
44
43
-
## phpBB Branches
45
+
### phpBB Branches
44
46
45
47
Use the test-framework branch that matches the phpBB version you're developing for:
46
48
47
49
- `3.3.x`: Targets the phpBB 3.3.x release line.
48
50
- `master`: Targets the latest development version of phpBB (`master` branch).
49
51
50
52
> ‼️ Whichever branch of this framework you choose, be sure it is appended to the `uses:` line after the `@` symbol. For example, if you're targeting the `master` branch:
Issues and pull requests are welcome! If you have suggestions for improvement, feel free to [open an issue](https://github.com/phpbb-extensions/test-framework/issues).
284
286
285
-
# License
287
+
## License
286
288
287
289
[GNU General Public License v2](https://opensource.org/licenses/GPL-2.0)
0 commit comments