-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make it possible to set changed files (#14)
* Make it possible to set changed files * Send the name to the body as well * Slightly better details * Try to run tests on github instead * Remove circleci try to fix tests * Allow newer phpunit * phpstan * Allow phpunit 8 * Fix phpstan config * Try to trigger CI * Use level 5 * Update readme * Test setter * Typo * Replace badge
- Loading branch information
Showing
10 changed files
with
118 additions
and
50 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
name: Test | ||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
test: | ||
name: Run tests | ||
runs-on: 'ubuntu-20.04' | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php-version: | ||
- "7.0" | ||
- "7.1" | ||
- "7.2" | ||
- "7.3" | ||
- "7.4" | ||
- "8.0" | ||
- "8.1" | ||
composer-version: | ||
- "1" | ||
- "2" | ||
steps: | ||
- name: Dump matrix context | ||
env: | ||
MATRIX_CONTEXT: ${{ toJSON(matrix) }} | ||
run: echo "$MATRIX_CONTEXT" | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
|
||
- name: Update composer | ||
run: composer --verbose self-update --${{ matrix.composer-version }} | ||
|
||
- name: Dump composer verson | ||
run: composer --version | ||
|
||
- name: Validate composer.json | ||
run: composer --verbose validate | ||
|
||
- name: Install dependencies | ||
run: composer --verbose install | ||
|
||
- name: Install some different dependencies if version is not php 7.0 | ||
if: matrix.php-version != 7.0 | ||
run: | | ||
composer require --dev phpstan/phpstan | ||
- name: Run tests | ||
run: composer test | ||
|
||
- run: composer validate | ||
|
||
- name: Coveralls | ||
if: matrix.php-version == 7.4 | ||
env: | ||
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
php vendor/bin/php-coveralls -v | ||
- name: Run phpstan | ||
if: matrix.php-version != 7.0 | ||
run: composer phpstan |
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
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
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,2 @@ | ||
parameters: | ||
level: 5 |
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
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
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
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
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