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
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ This repository contains a pre-configured test workflow designed for phpBB exten
13
13
14
14
## ✨ Features
15
15
16
-
- Supports **PHP 7.2+** through **8.x**
16
+
- Supports **PHP 8.x**
17
17
- Tests against multiple database engines
18
18
- Optional checks for:
19
19
- PHP CodeSniffer
@@ -46,10 +46,10 @@ 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@master# Must match PHPBB_BRANCH
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
52
+
PHPBB_BRANCH: master# The phpBB branch to run tests on
53
53
secrets:
54
54
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # Do not edit or remove this
55
55
```
@@ -61,12 +61,12 @@ Use the branch that matches the phpBB version you're developing for.
61
61
- `3.3.x`: Targets the phpBB 3.3.x release line.
62
62
- `master`: Targets the latest development version of phpBB (`master` branch).
63
63
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:
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 `master` branch:
0 commit comments