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
+10-7Lines changed: 10 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,27 +46,24 @@ on:
46
46
jobs:
47
47
call-tests:
48
48
name: Extension tests
49
-
uses: phpbb-extensions/test-framework/.github/workflows/tests.yml@3.3.x # Must match PHPBB_BRANCH
49
+
uses: phpbb-extensions/test-framework/.github/workflows/tests.yml@3.3.x # The phpBB branch to run tests with
50
50
with:
51
51
EXTNAME: acme/demo # Your extension vendor/package name
52
-
PHPBB_BRANCH: 3.3.x # The phpBB branch to run tests on
53
52
secrets:
54
53
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # Do not edit or remove this
55
54
```
56
55
57
56
### Branches
58
57
59
-
Use the branch that matches the phpBB version you're developing for.
58
+
Use the test-framework branch that matches the phpBB version you're developing for:
60
59
61
60
- `3.3.x`: Targets the phpBB 3.3.x release line.
62
61
- `master`: Targets the latest development version of phpBB (`master` branch).
63
62
64
-
> ‼️ Whichever branch you choose here, be sure to use the **same value** for both the `PHPBB_BRANCH` and in the `uses:` line after the `@` symbol. For example, if you're targeting the `3.3.x` branch:
63
+
> ‼️ 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 `3.3.x` branch:
0 commit comments