Skip to content

Commit

Permalink
Merge pull request #1435 from tripal/tv3g9-issue1434-automated-testin…
Browse files Browse the repository at this point in the history
…g-with-php8.2

tv3g9 automated testing with PHP 8.2
  • Loading branch information
laceysanderson committed Mar 6, 2023
2 parents f9e73ec + c8b5fba commit 31fa47d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpunit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# Matrix Build for this job.
strategy:
matrix:
php-versions: ['7.1', '7.2', '8.0', '8.1']
php-versions: ['7.1', '7.2', '8.0', '8.1', '8.2']
# Name the matrix build so we can tell them apart.
name: PHPUnit Testing of Tripal Core (PHP ${{ matrix.php-versions }})

Expand Down
4 changes: 2 additions & 2 deletions docs/dev_guide/CI.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ First we provide the name, when we want to run the workflow (i.e. on push and PR
runs-on: ubuntu-latest
We want our tests to be run four times, for each of PHP 7.1, 7.2, 8.0, and 8.1. This is done by specifing a matrix build which can be done as follows:
We want our tests to be run five times, for each of PHP 7.1, 7.2, 8.0, 8.1, and 8.2. This is done by specifing a matrix build which can be done as follows:

.. code-block:: yaml
Expand All @@ -51,7 +51,7 @@ We want our tests to be run four times, for each of PHP 7.1, 7.2, 8.0, and 8.1.
# Matrix Build for this job.
strategy:
matrix:
php-versions: ['7.1', '7.2', '8.0', '8.1']
php-versions: ['7.1', '7.2', '8.0', '8.1', '8.2']
# Name the matrix build so we can tell them apart.
name: PHPUnit Testing (PHP ${{ matrix.php-versions }})
Expand Down

0 comments on commit 31fa47d

Please sign in to comment.