Skip to content

Commit be7a2d5

Browse files
authored
Added tests and fixed composer issue.
1 parent 327cb40 commit be7a2d5

File tree

2 files changed

+44
-3
lines changed

2 files changed

+44
-3
lines changed

.github/workflows/laravel.yml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Laravel Package
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
laravel-tests:
11+
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
fail-fast: true
16+
matrix:
17+
php: [8.3, 8.2]
18+
19+
name: PHP ${{ matrix.php }}
20+
21+
steps:
22+
- name: Checkout code
23+
uses: actions/checkout@v3
24+
25+
- name: Cache dependencies
26+
uses: actions/cache@v1
27+
with:
28+
path: ~/.composer/cache/files
29+
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
30+
31+
- name: Setup PHP ${{ matrix.php }}
32+
uses: shivammathur/setup-php@v2
33+
with:
34+
php-version: ${{ matrix.php }}
35+
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, pgsql, pdo_pgsql
36+
coverage: none
37+
38+
- name: Install Dependencies
39+
run: |
40+
composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
41+
42+
- name: Execute Integration and Feature tests via PHPUnit
43+
run: vendor/bin/phpunit --configuration phpunit.xml --testsuite Integration,Feature

tests/Unit/DripperTest.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
<?php namespace GeneaLabs\LaravelCaffeine\Tests\Unit\Providers;
1+
<?php namespace GeneaLabs\LaravelCaffeine\Tests\Unit;
22

3-
use Exception;
43
use GeneaLabs\LaravelCaffeine\Dripper;
54
use GeneaLabs\LaravelCaffeine\Tests\UnitTestCase;
6-
use Illuminate\Foundation\Testing\RefreshDatabase;
75

86
class DripperTest extends UnitTestCase
97
{

0 commit comments

Comments
 (0)