Skip to content

Improve github workflow cache #10

Improve github workflow cache

Improve github workflow cache #10

Workflow file for this run

name: test
on:
push:
branches: [ "main" ]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test-suite:
name: Test Suite (PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }})
runs-on: ${{ matrix.operating-system }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
operating-system:
- ubuntu-latest
- windows-latest
- macos-latest
php-version:
- '8.2'
- '8.1'
- '8.0'
- '7.4'
experimental: [false]
steps:
- name: Configure git to avoid issues with line endings
if: runner.os == 'Windows'
run: git config --global core.autocrlf false
- name: Configure GNU tar on windows
if: ${{ runner.os == 'Windows' }}
shell: cmd
run: |
echo "Adding GNU tar to PATH"
echo C:\Program Files\Git\usr\bin>>"%GITHUB_PATH%"
- name: Checkout
uses: actions/checkout@v3
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
ini-values: date.timezone=UTC, memory_limit=-1, max_execution_time=-1
tools: phpunit-bridge
coverage: none
- name: Get Composer config
id: composer-config
shell: bash
run: |
echo "BIN_DIR=$(composer config home)/vendor/bin" >> $GITHUB_OUTPUT
echo "CACHE_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer
id: cache-composer
uses: actions/cache@v3
with:
key: ${{ runner.os }}:php-${{ matrix.php-version }}:composer
path: |
${{ steps.composer-config.outputs.BIN_DIR }}
${{ steps.composer-config.outputs.CACHE_DIR }}
- name: Cache vendor
id: cache-vendor
uses: actions/cache@v3
with:
# Use composer.json for key as composer.lock is not committed.
key: ${{ runner.os }}:php-${{ matrix.php-version }}:vendor-${{ hashFiles('**/composer.json') }}
path: vendor
restore-keys: |
${{ runner.os }}:php-${{ matrix.php-version }}:vendor-${{ hashFiles('**/composer.json') }}
${{ runner.os }}:php-${{ matrix.php-version }}:vendor-
- name: Install composer dependencies
run: composer install --ansi --no-progress --optimize-autoloader
- name: Run test suite
run: simple-phpunit
code-coverage:
name: Code Coverage (PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }})
runs-on: ${{ matrix.operating-system }}
continue-on-error: ${{ matrix.experimental }}
needs:
- test-suite
strategy:
fail-fast: false
matrix:
operating-system:
- ubuntu-latest # Code Coverage only supported on Linux
php-version:
- '8.1' # Used fastest stable version
experimental: [false]
steps:
- name: Configure git to avoid issues with line endings
if: runner.os == 'Windows'
run: git config --global core.autocrlf false
- name: Configure GNU tar on windows
if: ${{ runner.os == 'Windows' }}
shell: cmd
run: |
echo "Adding GNU tar to PATH"
echo C:\Program Files\Git\usr\bin>>"%GITHUB_PATH%"
- name: Checkout
uses: actions/checkout@v3
with:
# Fetch 10 commits (an arbitrary value that is more than 1 commit) or Scrutinizer will throw:
#
# Failed to retrieve commit parents.
# If you use a shallow git checkout, please checkout at least a depth of one.
#
# @see RepositoryIntrospector at scrutinizer-ci/ocular GitHub repository
fetch-depth: 10
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
ini-values: date.timezone=UTC, memory_limit=-1, max_execution_time=-1
tools: phpunit-bridge
coverage: ${{ fromJSON('["pcov", "xdebug"]')[matrix.php-version == '7.1' || (matrix.operating-system == 'macos-latest' && matrix.php-version == '8.2')] }}
- name: Get Composer config
id: composer-config
shell: bash
run: |
echo "BIN_DIR=$(composer config home)/vendor/bin" >> $GITHUB_OUTPUT
echo "CACHE_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer
id: cache-composer
uses: actions/cache@v3
with:
key: ${{ runner.os }}:php-${{ matrix.php-version }}:composer
path: |
${{ steps.composer-config.outputs.BIN_DIR }}
${{ steps.composer-config.outputs.CACHE_DIR }}
- name: Cache vendor
id: cache-vendor
uses: actions/cache@v3
with:
# Use composer.json for key as composer.lock is not committed.
key: ${{ runner.os }}:php-${{ matrix.php-version }}:vendor-${{ hashFiles('**/composer.json') }}
path: vendor
restore-keys: |
${{ runner.os }}:php-${{ matrix.php-version }}:vendor-${{ hashFiles('**/composer.json') }}
${{ runner.os }}:php-${{ matrix.php-version }}:vendor-
- name: Install composer dependencies
run: composer install --ansi --no-progress --optimize-autoloader
- name: Collect code coverage
run: simple-phpunit --coverage-clover=coverage.xml
- name: Upload coverage to Scrutinizer
uses: sudo-bot/action-scrutinizer@latest
with:
cli-args: "--format=php-clover coverage.xml --revision=${{ github.event.pull_request.head.sha || github.sha }}"