Skip to content

Commit

Permalink
Merge pull request #65 from ukfast/rbibby-patch-1
Browse files Browse the repository at this point in the history
Add PHP 8.1 / 7.0 to test matrix
  • Loading branch information
Gman98ish authored Dec 21, 2021
2 parents da99e75 + 2c3851a commit db0a135
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
php: [8.0, 7.4, 7.3, 7.2, 7.1, 5.6]
php: [8.1, 8.0, 7.4, 7.3, 7.2, 7.1, 7.0, 5.6]

name: PHP${{ matrix.php }} - ubuntu-latest

Expand All @@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@v1

- name: Setup PHP
uses: shivammathur/setup-php@v1
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
Expand Down
2 changes: 1 addition & 1 deletion tests/HealthCheckServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public function health_name_can_be_used_for_route_generation()
{
$this->app->register(HealthCheckServiceProvider::class);

if (substr(phpversion(), 0, 2) === '5.') {
if (substr(phpversion(), 0, 2) === '5.' || substr(phpversion(), 0, 3) === '7.0') {
$this->markTestSkipped('URL::signedRoute does not exists');
}

Expand Down

0 comments on commit db0a135

Please sign in to comment.