diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9a09715..d88c2f03 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,19 +7,21 @@ on: - master workflow_dispatch: +env: + TESTING: true + jobs: validation: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest strategy: fail-fast: false matrix: php-version: [ - '7.4', '8.1' ] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -33,11 +35,10 @@ jobs: - name: Get Composer Cache Directory id: composer-cache - run: | - echo "::set-output name=dir::$(composer config cache-files-dir)" + run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Composer cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.gitignore b/.gitignore index b61fdd56..c7278016 100644 --- a/.gitignore +++ b/.gitignore @@ -12,5 +12,7 @@ nbproject/ *.AppleDB *.AppleDesktop +generated/* + # tooling composer.lock diff --git a/README.md b/README.md index cdd0d569..431ee0ee 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Spryk Module [![CI](https://github.com/spryker-sdk/spryk/workflows/CI/badge.svg?branch=master)](https://github.com/spryker-sdk/spryk/actions?query=workflow%3ACI+branch%3Amaster) [![Latest Stable Version](https://poser.pugx.org/spryker-sdk/spryk/v/stable.svg)](https://packagist.org/packages/spryker-sdk/spryk) -[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.4-8892BF.svg)](https://php.net/) +[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.0-8892BF.svg)](https://php.net/) [![PHPStan](https://img.shields.io/badge/PHPStan-enabled-brightgreen.svg?style=flat)](https://github.com/phpstan/phpstan) ## Installation diff --git a/spryk.phar b/spryk.phar index a6c57dff..b5af776e 100755 Binary files a/spryk.phar and b/spryk.phar differ