mirror of
https://gh.wpcy.net/https://github.com/itk-dev/freescout-itk-portal-submit.git
synced 2026-04-17 05:52:19 +08:00
82 lines
2.8 KiB
YAML
82 lines
2.8 KiB
YAML
on: pull_request
|
|
name: Review
|
|
jobs:
|
|
changelog:
|
|
runs-on: ubuntu-latest
|
|
name: Changelog should be updated
|
|
strategy:
|
|
fail-fast: false
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: Git fetch
|
|
run: git fetch
|
|
|
|
- name: Check that changelog has been updated.
|
|
run: git diff --exit-code origin/${{ github.base_ref }} -- CHANGELOG.md && exit 1 || exit 0
|
|
test-composer-files:
|
|
name: Validate composer
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
php-versions: [ '8.1' ]
|
|
dependency-version: [ prefer-lowest, prefer-stable ]
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Setup PHP, with composer and extensions
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
extensions: json
|
|
coverage: none
|
|
tools: composer:v2
|
|
# https://github.com/shivammathur/setup-php#cache-composer-dependencies
|
|
- name: Get composer cache directory
|
|
id: composer-cache
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
restore-keys: ${{ runner.os }}-composer-
|
|
- name: Validate composer files
|
|
run: |
|
|
composer validate --strict composer.json
|
|
# Check that dependencies resolve.
|
|
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
|
|
php-check-coding-standards:
|
|
name: PHP - Check Coding Standards
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
php-versions: [ '8.1' ]
|
|
dependency-version: [ prefer-lowest, prefer-stable ]
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Setup PHP, with composer and extensions
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
extensions: json
|
|
coverage: none
|
|
tools: composer:v2
|
|
# https://github.com/shivammathur/setup-php#cache-composer-dependencies
|
|
- name: Get composer cache directory
|
|
id: composer-cache
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
restore-keys: ${{ runner.os }}-composer-
|
|
- name: Install Dependencies
|
|
run: |
|
|
composer install --no-interaction --no-progress
|
|
- name: PHPCS
|
|
run: |
|
|
composer coding-standards-check/phpcs
|