-
-
Notifications
You must be signed in to change notification settings - Fork 43
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 #68 from AlessandroMinoccheri/github-actions
Added github actions
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Poser | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
|
||
strategy: | ||
matrix: | ||
container: [ "php74", "php80" ] | ||
|
||
runs-on: ubuntu-latest | ||
container: pugx/poser:${{ matrix.container }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Validate composer.json | ||
run: composer validate | ||
|
||
- name: Cache Composer packages | ||
id: composer-cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: vendor | ||
key: ${{ runner.os }}-php-${{ matrix.container }}-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-php-${{ matrix.container }} | ||
- name: Install dependencies | ||
run: composer install -n --no-progress --no-suggest | ||
|
||
- name: Coding Standard Checks | ||
run: PHP_CS_FIXER_IGNORE_ENV=1 bin/php-cs-fixer fix --verbose --diff --dry-run | ||
|
||
- name: phpspec | ||
run: bin/phpspec run --format=pretty | ||
|
||
- name: Run tests (phpspec) | ||
run: ./bin/phpspec run --format=pretty | ||
|
||
- name: Run coverage tests (phpspec) | ||
run: XDEBUG_MODE=coverage bin/phpspec run -f progress -c phpspec-coverage.yml | ||
|
||
- name: Run behat tests | ||
run: ./bin/behat |