v1.0 Initial commit of project
This commit is contained in:
68
vendor/endroid/qr-code/.github/workflows/CI.yml
vendored
Normal file
68
vendor/endroid/qr-code/.github/workflows/CI.yml
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
name: CI
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
php-versions: ['7.3', '7.4', '8.0', '8.1']
|
||||
fail-fast: false
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
extensions: gd, mbstring, pcov, zip
|
||||
ini-values: max_execution_time=600, memory_limit=-1
|
||||
tools: composer:v2
|
||||
coverage: pcov
|
||||
env:
|
||||
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Get composer cache directory
|
||||
id: composercache
|
||||
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
||||
|
||||
- name: Cache composer dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ${{ steps.composercache.outputs.dir }}
|
||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
||||
restore-keys: ${{ runner.os }}-composer-
|
||||
|
||||
- name: Setup problem matchers
|
||||
run: |
|
||||
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
|
||||
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
|
||||
|
||||
- name: Install Composer dependencies
|
||||
run: composer install --prefer-dist
|
||||
|
||||
- name: Check code quality
|
||||
run: vendor/bin/code-quality
|
||||
|
||||
- name: Test against highest versions
|
||||
run: |
|
||||
vendor/bin/unit-test
|
||||
vendor/bin/functional-test
|
||||
|
||||
- name: Test against lowest versions
|
||||
run: |
|
||||
composer update --prefer-lowest
|
||||
vendor/bin/unit-test
|
||||
vendor/bin/functional-test ^3.4
|
||||
|
||||
- name: Archive logs
|
||||
if: ${{ failure() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: logs
|
||||
path: vendor/endroid/quality/application/var/log
|
||||
|
||||
- name: Archive code coverage results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: coverage
|
||||
path: tests/coverage
|
||||
Reference in New Issue
Block a user