Skip to content

Commit

Permalink
Merge pull request #147 from yadaiio/test_suite
Browse files Browse the repository at this point in the history
Run tests on PHP 8.3 and update test suite
  • Loading branch information
clue committed Nov 25, 2023
2 parents 76bd8ae + 15f43bf commit d4e16d3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
strategy:
matrix:
php:
- 8.3
- 8.2
- 8.1
- 8.0
Expand All @@ -19,7 +20,7 @@ jobs:
- 7.2
- 7.1
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
Expand All @@ -44,6 +45,7 @@ jobs:
strategy:
matrix:
php:
- 8.3
- 8.2
- 8.1
- 8.0
Expand All @@ -52,7 +54,7 @@ jobs:
- 7.2
- 7.1
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
Expand Down
8 changes: 6 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,13 @@
"phpunit/phpunit": "^9.6 || ^7.5"
},
"autoload": {
"psr-4": { "Clue\\React\\Redis\\": "src/" }
"psr-4": {
"Clue\\React\\Redis\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "Clue\\Tests\\React\\Redis\\": "tests/" }
"psr-4": {
"Clue\\Tests\\React\\Redis\\": "tests/"
}
}
}

0 comments on commit d4e16d3

Please sign in to comment.