CI #71
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'CI' | |
on: # Build any PRs and main branch changes | |
workflow_dispatch: # Allows to run the workflow manually from the Actions tab | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
push: | |
branches: [ master ] | |
schedule: | |
- cron: '0 0 1 * *' # Every month | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.head_ref || github.ref }}" | |
cancel-in-progress: true | |
env: | |
TEST_OUTPUT_STYLE: pretty | |
COMPOSER_OPTIONS: --optimize-autoloader | |
CODACY_CACHE_PATH: ~/.cache/codacy | |
CODACY_BIN: ~/.cache/codacy/codacy.sh | |
jobs: | |
tests: | |
name: UTs & FTs - PHP ${{ matrix.php-version }} | |
runs-on: ubuntu-latest | |
env: | |
COVERAGE_TYPE: none | |
strategy: | |
fail-fast: true | |
max-parallel: 4 | |
matrix: | |
include: | |
# Bare minimum => Lowest versions allowed by composer config | |
- php-version: '8.0' | |
composer-flag: --prefer-lowest | |
# Up to date versions => Latest versions allowed by composer config | |
- php-version: '8.2' | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Enable coverage | |
if: ${{ matrix.php-version == '8.2' }} | |
run: | | |
echo "COVERAGE_OUTPUT_STYLE=clover" >> $GITHUB_ENV | |
echo "COVERAGE_TYPE=xdebug" >> $GITHUB_ENV | |
- name: Setup PHP ${{ matrix.php-version }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '${{ matrix.php-version }}' | |
tools: composer | |
coverage: ${{ env.COVERAGE_TYPE }} | |
env: | |
# Always use latest available patch for the version | |
update: true | |
- name: Setup cache | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.composer | |
./vendor | |
${{ env.CODACY_CACHE_PATH }} | |
# Clear the cache if composer json (as composer.lock is in the repo) has been updated | |
key: tests-${{ matrix.php-version }}-${{ matrix.composer-flag }}-${{ hashFiles('composer.json') }} | |
- name: Download codacy binary | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
mkdir -p ${{ env.CODACY_CACHE_PATH }} \ | |
&& curl -LN https://coverage.codacy.com/get.sh -o ${{ env.CODACY_BIN }} \ | |
&& chmod +x ${{ env.CODACY_BIN }} \ | |
&& ${{ env.CODACY_BIN }} download | |
- name: Build | |
run: | | |
composer update ${{ env.COMPOSER_OPTIONS }} ${{ matrix.composer-flag }} \ | |
&& make build | |
- name: Tests | |
run: make test-unit && make test-functional | |
# Upload to codacy first as codecov action always remove coverage files despite move_coverage_to_trash at false | |
# And only if it's not a PR from a fork => Can't work as codacy secret is not accessible in that context | |
- name: Upload coverages to Codacy | |
if: ${{ (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'yoanm/php-jsonrpc-server-doc-sdk') && env.COVERAGE_TYPE == 'xdebug' }} | |
run: ${{ env.CODACY_BIN }} report -r build/coverage-phpunit/unit.clover -r build/coverage-behat/clover.xml -r build/coverage-phpunit/functional.clover -t ${{ secrets.CODACY_PROJECT_TOKEN }} --partial | |
# See the reports at https://codecov.io/gh/yoanm/php-jsonrpc-server-doc-sdk | |
- name: Upload unit tests coverage to codecov | |
if: ${{ env.COVERAGE_TYPE == 'xdebug' }} | |
uses: codecov/codecov-action@v3 | |
with: | |
file: "build/coverage-phpunit/unit.clover" | |
name: "unit-tests-${{ matrix.php-version }}" | |
flags: "unit-tests,php-${{ matrix.php-version }}" | |
fail_ci_if_error: true | |
move_coverage_to_trash: false | |
verbose: ${{ runner.debug == '1' }} | |
- name: Upload functional tests coverage to codecov | |
if: ${{ env.COVERAGE_TYPE == 'xdebug' }} | |
uses: codecov/codecov-action@v3 | |
with: | |
files: "build/coverage-behat/clover.xml,build/coverage-phpunit/functional.clover" | |
name: "functional-tests-${{ matrix.php-version }}" | |
flags: "functional-tests,php-${{ matrix.php-version }}" | |
fail_ci_if_error: true | |
move_coverage_to_trash: false | |
verbose: ${{ runner.debug == '1' }} | |
static-checks: | |
name: Static checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP 8.2 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 # Latest supported | |
tools: composer | |
coverage: none | |
env: | |
# Always use latest available patch for the version | |
update: true | |
- name: Setup cache | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.composer | |
# Clear the cache if composer json (as composer.lock is in the repo) has been updated | |
key: tests-${{ env.PHP_VERSION }}-${{ hashFiles('composer.json') }} | |
- name: Build | |
run: make build | |
- name: ComposerRequireChecker | |
uses: docker://webfactory/composer-require-checker:4.5.0 | |
- name: Dependencies check | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: actions/dependency-review-action@v1 | |
finalize-codacy-coverage-report: | |
runs-on: ubuntu-latest | |
name: Finalize Codacy coverage report | |
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'yoanm/php-jsonrpc-server-doc-sdk' }} | |
needs: [ tests ] | |
steps: | |
- name: Setup cache | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
${{ env.CODACY_CACHE_PATH }} | |
key: codacy-final | |
- name: Download codacy binary | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
mkdir -p ${{ env.CODACY_CACHE_PATH }} \ | |
&& curl -LN https://coverage.codacy.com/get.sh -o ${{ env.CODACY_BIN }} \ | |
&& chmod +x ${{ env.CODACY_BIN }} \ | |
&& ${{ env.CODACY_BIN }} download | |
- name: Finalize reporting | |
run: ${{ env.CODACY_BIN }} final -t ${{ secrets.CODACY_PROJECT_TOKEN }} | |
nightly-tests: | |
name: Nightly - PHP ${{ matrix.php-version }} | |
runs-on: ubuntu-latest | |
env: | |
COMPOSER_OPTIONS: '--optimize-autoloader --ignore-platform-req=php+' | |
continue-on-error: true | |
needs: [ static-checks, tests ] | |
strategy: | |
fail-fast: false | |
max-parallel: 4 | |
matrix: | |
php-version: | |
- '8.3' # Current php dev version | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Setup PHP ${{ matrix.php-version }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '${{ matrix.php-version }}' | |
tools: composer | |
coverage: none | |
env: | |
# Always use latest available patch for the version | |
update: true | |
- name: Setup cache | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.composer | |
./vendor | |
# Clear the cache if composer json (as composer.lock is in the repo) has been updated | |
key: tests-${{ matrix.php-version }}-${{ hashFiles('composer.json') }} | |
- name: Build | |
run: | | |
composer update ${{ env.COMPOSER_OPTIONS }} \ | |
&& make build | |
- name: Test | |
run: make test-unit && make test-functional |