Skip to content

Commit e65d91e

Browse files
committed
Update readme for master testing
1 parent 7c3c786 commit e65d91e

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This repository contains a pre-configured test workflow designed for phpBB exten
1313

1414
## ✨ Features
1515

16-
- Supports **PHP 7.2+** through **8.x**
16+
- Supports **PHP 8.x**
1717
- Tests against multiple database engines
1818
- Optional checks for:
1919
- PHP CodeSniffer
@@ -46,10 +46,10 @@ on:
4646
jobs:
4747
call-tests:
4848
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
5050
with:
5151
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
5353
secrets:
5454
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # Do not edit or remove this
5555
```
@@ -61,12 +61,12 @@ Use the branch that matches the phpBB version you're developing for.
6161
- `3.3.x`: Targets the phpBB 3.3.x release line.
6262
- `master`: Targets the latest development version of phpBB (`master` branch).
6363

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:
6565
>
6666
> ```yaml
67-
> uses: phpbb-extensions/test-framework/.github/workflows/tests.yml@3.3.x
67+
> uses: phpbb-extensions/test-framework/.github/workflows/tests.yml@master
6868
> with:
69-
> PHPBB_BRANCH: 3.3.x
69+
> PHPBB_BRANCH: master
7070
> ```
7171

7272
### Requirements
@@ -81,10 +81,10 @@ You can fine-tune this workflow with several optional arguments in the `with` se
8181
```yaml
8282
call-tests:
8383
name: Extension tests
84-
uses: phpbb-extensions/test-framework/.github/workflows/tests.yml@3.3.x
84+
uses: phpbb-extensions/test-framework/.github/workflows/tests.yml@master
8585
with:
8686
EXTNAME: acme/demo # Your extension vendor/package name
87-
PHPBB_BRANCH: 3.3.x # The phpBB branch to run tests on
87+
PHPBB_BRANCH: master # The phpBB branch to run tests on
8888
8989
# OPTIONAL CONFIGURATIONS BELOW
9090
# The following arguments are optional and can be omitted if not needed.
@@ -130,16 +130,16 @@ call-tests:
130130
RUN_COMPOSER_INSTALL: 0
131131
132132
# CUSTOMISE PHP VERSIONS
133-
# To override the default PHP versions tested (7.2 through 8.4):
133+
# To override the default PHP versions tested (8.1 through 8.4):
134134
135135
# Preferred PHP version used for all test jobs.
136-
# Default: '7.2'
137-
PRIMARY_PHP_VERSION: '7.2'
136+
# Default: '8.1'
137+
PRIMARY_PHP_VERSION: '8.1'
138138
139139
# The MySQL and PostgreSQL jobs run tests across multiple PHP versions.
140140
# List the PHP versions you want your extension tested with.
141-
# Default: '["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]'
142-
PHP_VERSION_MATRIX: '["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]'
141+
# Default: '["8.1", "8.2", "8.3", "8.4"]'
142+
PHP_VERSION_MATRIX: '["8.1", "8.2", "8.3", "8.4"]'
143143
144144
# Generate a code coverage report (see documentation below)? 1 (yes) or 0 (no)
145145
# Default: 0

0 commit comments

Comments
 (0)