Add ability to limit portal results when using the Eloquent query builder #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Code Style" | |
on: [pull_request] | |
jobs: | |
code_style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: "Laravel Pint" | |
uses: aglipanci/[email protected] | |
with: | |
verboseMode: true | |
testMode: true | |
configPath: "./pint.json" |