-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from umutphp/16-laravel-10-support
Add Laravel 10 support
- Loading branch information
Showing
7 changed files
with
66 additions
and
106 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: Basic Checks | ||
on: [push, pull_request] | ||
on: [push] | ||
|
||
jobs: | ||
node-docker: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Test In All PHP Versions | ||
|
||
on: | ||
pull_request: | ||
branches: [master] | ||
|
||
jobs: | ||
phpunit: | ||
name: PHPUnit | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php-version: | ||
- "7.4" | ||
- "8.0" | ||
- "8.1" | ||
- "8.2" | ||
dependency-versions: | ||
- "lowest" | ||
- "highest" | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
coverage: none | ||
|
||
- name: Install composer dependencies | ||
uses: ramsey/composer-install@v2 | ||
with: | ||
dependency-versions: ${{ matrix.dependency-versions }} | ||
|
||
- name: Run PHPUnit | ||
run: vendor/bin/phpunit tests |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
name: Markdown Linter | ||
|
||
on: [push, pull_request] | ||
on: [push] | ||
|
||
jobs: | ||
phpcs: | ||
name: Lint MD Files | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Lint README | ||
uses: nosborn/github-action-markdown-cli@v1.1.1 | ||
with: | ||
files: README.md | ||
config_file: "./.github/markdown.config.json" | ||
- name: Lint CONTRIBUTING | ||
uses: nosborn/github-action-markdown-cli@v1.1.1 | ||
with: | ||
files: ./.github/CONTRIBUTING.md | ||
config_file: "./.github/markdown.config.json" | ||
|
||
name: Lint MD Files | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Lint README | ||
uses: nosborn/github-action-markdown-cli@v1.1.1 | ||
with: | ||
files: README.md | ||
config_file: "./.github/markdown.config.json" | ||
- name: Lint CONTRIBUTING | ||
uses: nosborn/github-action-markdown-cli@v1.1.1 | ||
with: | ||
files: ./.github/CONTRIBUTING.md | ||
config_file: "./.github/markdown.config.json" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
name: Codestyle Check | ||
|
||
on: [push, pull_request] | ||
on: [push] | ||
|
||
jobs: | ||
phpcs: | ||
name: PHPCS | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: PHPCS check | ||
uses: chekalsky/phpcs-action@v1 | ||
name: PHPCS | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: PHPCS check | ||
uses: chekalsky/phpcs-action@v1 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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