Skip to content

Commit 65237c0

Browse files
committed
Repair workflows
1 parent afb606f commit 65237c0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/inspect.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,16 @@ on:
2424

2525
jobs:
2626
build:
27-
name: PHP ${{ matrix.php-versions }} Architectural Inspection
27+
name: Architectural Inspection
2828
runs-on: ubuntu-latest
29-
strategy:
30-
fail-fast: false
31-
matrix:
32-
php-versions: ['7.4', '8.0']
3329
steps:
3430
- name: Checkout
3531
uses: actions/checkout@v2
3632

3733
- name: Setup PHP
3834
uses: shivammathur/setup-php@v2
3935
with:
40-
php-version: ${{ matrix.php-versions }}
36+
php-version: '8.0'
4137
tools: composer, pecl, phive, phpunit
4238
extensions: intl, json, mbstring, gd, mysqlnd, xdebug, xml, sqlite3
4339
env:

composer.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
"codeigniter4/codeigniter4-standard": "^1.0",
2525
"fakerphp/faker": "^1.9",
2626
"mockery/mockery": "^1.0",
27+
"nexusphp/tachycardia": "^1.0",
28+
"php-coveralls/php-coveralls": "^2.4",
2729
"phpstan/phpstan": "^0.12",
2830
"phpunit/phpunit": "^9.0",
2931
"squizlabs/php_codesniffer": "^3.3"

depfile.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
paths:
22
- ./src
33
- ./vendor/codeigniter4/codeigniter4/system
4-
- ./vendor/tatter
54
exclude_files:
65
- '#.*test.*#i'
76
layers:

tests/_support/TestCase.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33
namespace Tests\Support;
44

55
use CodeIgniter\Test\CIUnitTestCase;
6+
use Nexus\PHPUnit\Extension\Expeditable;
67

78
abstract class TestCase extends CIUnitTestCase
89
{
10+
use Expeditable;
11+
912
protected $namespace = 'Sparks\Settings';
1013
protected $refresh = true;
1114

0 commit comments

Comments
 (0)