Skip to content

Commit

Permalink
Merge pull request #22 from LIQRGV/feat/include-eager-load-relation
Browse files Browse the repository at this point in the history
Include eager load relation
  • Loading branch information
LIQRGV committed Nov 30, 2022
2 parents 194520c + b5605a4 commit 893c475
Show file tree
Hide file tree
Showing 9 changed files with 3,344 additions and 1,567 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: CI

on:
pull_request:
types:
- opened
- reopened
push:
branches:
- master

jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Install composer and dependencies
uses: php-actions/composer@v6

- name: PHPUnit Tests
uses: php-actions/phpunit@v3
env:
XDEBUG_MODE: coverage
with:
bootstrap: vendor/autoload.php
configuration: phpunit.xml
php_extensions: xdebug
args: tests --coverage-clover ./coverage.xml

- name: Upload to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODE_COV_TOKEN }}
files: ./coverage.xml
verbose: true
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"haydenpierce/class-finder": "^0.4.0"
},
"require-dev": {
"fzaninotto/faker": ">=1.4",
"fakerphp/faker": ">=1.4",
"illuminate/routing": ">=6.0",
"laravel/lumen-framework": ">=6.0",
"mockery/mockery": ">=1.0",
Expand Down
Loading

0 comments on commit 893c475

Please sign in to comment.