Skip to content

Commit

Permalink
Merge pull request #68 from AlessandroMinoccheri/github-actions
Browse files Browse the repository at this point in the history
Added github actions
  • Loading branch information
JellyBellyDev authored Jan 4, 2021
2 parents 71c33ce + 149d4f7 commit 940cbf3
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/php.yml
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

0 comments on commit 940cbf3

Please sign in to comment.