Update GitHub actions (#239)
This commit is contained in:
parent
f95f012873
commit
3fe4c34d62
@ -2,11 +2,11 @@ on:
|
|||||||
- pull_request
|
- pull_request
|
||||||
- push
|
- push
|
||||||
|
|
||||||
name: ci-linux
|
name: build
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
tests:
|
tests:
|
||||||
name: PHP ${{ matrix.php-version }}
|
name: PHP ${{ matrix.php }}
|
||||||
env:
|
env:
|
||||||
extensions: curl, dom, gd, imagick, intl, json, mbstring, libxml, xml, xmlwriter
|
extensions: curl, dom, gd, imagick, intl, json, mbstring, libxml, xml, xmlwriter
|
||||||
key: cache-v1
|
key: cache-v1
|
||||||
@ -17,8 +17,9 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
|
- windows-latest
|
||||||
|
|
||||||
php-version:
|
php:
|
||||||
- "5.6"
|
- "5.6"
|
||||||
- "7.0"
|
- "7.0"
|
||||||
- "7.1"
|
- "7.1"
|
||||||
@ -34,7 +35,7 @@ jobs:
|
|||||||
id: cache-env
|
id: cache-env
|
||||||
uses: shivammathur/cache-extensions@v1
|
uses: shivammathur/cache-extensions@v1
|
||||||
with:
|
with:
|
||||||
php-version: ${{ matrix.php-version }}
|
php-version: ${{ matrix.php }}
|
||||||
extensions: ${{ env.extensions }}
|
extensions: ${{ env.extensions }}
|
||||||
key: ${{ env.key }}
|
key: ${{ env.key }}
|
||||||
|
|
||||||
@ -48,7 +49,7 @@ jobs:
|
|||||||
- name: Install PHP with extensions
|
- name: Install PHP with extensions
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
with:
|
with:
|
||||||
php-version: ${{ matrix.php-version }}
|
php-version: ${{ matrix.php }}
|
||||||
extensions: ${{ env.extensions }}
|
extensions: ${{ env.extensions }}
|
||||||
ini-values: date.timezone='UTC'
|
ini-values: date.timezone='UTC'
|
||||||
coverage: xdebug
|
coverage: xdebug
|
||||||
@ -61,21 +62,15 @@ jobs:
|
|||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
path: ${{ env.COMPOSER_CACHE_DIR }}
|
path: ${{ env.COMPOSER_CACHE_DIR }}
|
||||||
key: php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}
|
key: php${{ matrix.php }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
|
php${{ matrix.php }}-composer-${{ matrix.dependencies }}-
|
||||||
|
|
||||||
- name: Install dependencies with composer php PHP [5.6 - 7.4]
|
- name: Install dependencies with composer php PHP [5.6 - 7.4]
|
||||||
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader
|
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader
|
||||||
|
|
||||||
- name: Run tests with codeception with coverage on Linux PHP [5.6 - 7.4]
|
- name: Run tests with codeception
|
||||||
run: |
|
run: |
|
||||||
sed -i "s/'cookieValidationKey' => ''/'cookieValidationKey' => 'testkey'/" config/web.php
|
sed -i "s/'cookieValidationKey' => ''/'cookieValidationKey' => 'testkey'/" config/web.php
|
||||||
php -S 127.0.0.1:8080 -t public > ./runtime/yii.log 2>&1 &
|
php -S 127.0.0.1:8080 -t public > ./runtime/yii.log 2>&1 &
|
||||||
vendor/bin/codecept run --coverage --coverage-xml
|
vendor/bin/codecept run
|
||||||
|
|
||||||
- name: Upload code coverage scrutinizer on Linux PHP 7.4
|
|
||||||
if: matrix.php-version == '7.4'
|
|
||||||
run: |
|
|
||||||
wget https://scrutinizer-ci.com/ocular.phar
|
|
||||||
php ocular.phar code-coverage:upload --format=php-clover tests/_output/coverage.xml
|
|
76
.github/workflows/ci-windows.yml
vendored
76
.github/workflows/ci-windows.yml
vendored
@ -1,76 +0,0 @@
|
|||||||
on:
|
|
||||||
- pull_request
|
|
||||||
- push
|
|
||||||
|
|
||||||
name: ci-windows
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
tests:
|
|
||||||
name: PHP ${{ matrix.php-version }}
|
|
||||||
env:
|
|
||||||
extensions: curl, dom, gd, intl, json, mbstring, libxml, xml, xmlwriter
|
|
||||||
key: cache-v1
|
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os:
|
|
||||||
- windows-latest
|
|
||||||
|
|
||||||
php-version:
|
|
||||||
- "5.6"
|
|
||||||
- "7.0"
|
|
||||||
- "7.1"
|
|
||||||
- "7.2"
|
|
||||||
- "7.3"
|
|
||||||
- "7.4"
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Setup cache environment
|
|
||||||
id: cache-env
|
|
||||||
uses: shivammathur/cache-extensions@v1
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-version }}
|
|
||||||
extensions: ${{ env.extensions }}
|
|
||||||
key: ${{ env.key }}
|
|
||||||
|
|
||||||
- name: Cache extensions
|
|
||||||
uses: actions/cache@v1
|
|
||||||
with:
|
|
||||||
path: ${{ steps.cache-env.outputs.dir }}
|
|
||||||
key: ${{ steps.cache-env.outputs.key }}
|
|
||||||
restore-keys: ${{ steps.cache-env.outputs.key }}
|
|
||||||
|
|
||||||
- name: Install PHP with extensions
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-version }}
|
|
||||||
extensions: ${{ env.extensions }}
|
|
||||||
ini-values: date.timezone='UTC'
|
|
||||||
coverage: xdebug
|
|
||||||
tools: composer:v2, pecl
|
|
||||||
|
|
||||||
- name: Determine composer cache directory on Windows
|
|
||||||
run: ECHO "::set-env name=COMPOSER_CACHE_DIR::~\AppData\Local\Composer"
|
|
||||||
|
|
||||||
- name: Cache dependencies installed with composer
|
|
||||||
uses: actions/cache@v1
|
|
||||||
with:
|
|
||||||
path: ${{ env.COMPOSER_CACHE_DIR }}
|
|
||||||
key: php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}
|
|
||||||
restore-keys: |
|
|
||||||
php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
|
|
||||||
|
|
||||||
- name: Install dependencies with composer php PHP [5.6 - 7.4]
|
|
||||||
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Run tests with codeception on Windows PHP [5.6 - 7.4]
|
|
||||||
run: |
|
|
||||||
sed -i "s/'cookieValidationKey' => ''/'cookieValidationKey' => 'testkey'/" config/web.php
|
|
||||||
php -S 127.0.0.1:8080 -t public > ./runtime/yii.log 2>&1 &
|
|
||||||
vendor/bin/codecept run
|
|
||||||
shell: bash
|
|
@ -15,8 +15,7 @@ features to your application.
|
|||||||
|
|
||||||
[![Latest Stable Version](https://img.shields.io/packagist/v/yiisoft/yii2-app-basic.svg)](https://packagist.org/packages/yiisoft/yii2-app-basic)
|
[![Latest Stable Version](https://img.shields.io/packagist/v/yiisoft/yii2-app-basic.svg)](https://packagist.org/packages/yiisoft/yii2-app-basic)
|
||||||
[![Total Downloads](https://img.shields.io/packagist/dt/yiisoft/yii2-app-basic.svg)](https://packagist.org/packages/yiisoft/yii2-app-basic)
|
[![Total Downloads](https://img.shields.io/packagist/dt/yiisoft/yii2-app-basic.svg)](https://packagist.org/packages/yiisoft/yii2-app-basic)
|
||||||
[![ci-linux](https://github.com/yiisoft/yii2-app-basic/workflows/ci-linux/badge.svg)](https://github.com/yiisoft/yii2-app-basic/actions?query=workflow%3Aci-linux)
|
[![build](https://github.com/yiisoft/yii2-app-basic/workflows/build/badge.svg)](https://github.com/yiisoft/yii2-app-basic/actions?query=workflow%3Abuild)
|
||||||
[![ci-windows](https://github.com/yiisoft/yii2-app-basic/workflows/ci-windows/badge.svg)](https://github.com/yiisoft/yii2-app-basic/actions?query=workflow%3Aci-windows)
|
|
||||||
|
|
||||||
DIRECTORY STRUCTURE
|
DIRECTORY STRUCTURE
|
||||||
-------------------
|
-------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user