Skip to content

Apply fixes from StyleCI #94

Apply fixes from StyleCI

Apply fixes from StyleCI #94

Workflow file for this run

name: CI
on: [ 'push', 'pull_request' ]
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest ]
php: [ 8.3 ]
dependency-version: [ prefer-stable ]
name: PHP ${{ matrix.php }} | OS ${{ matrix.os }} | Dependency Resolution ${{ matrix.dependency-version }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
# TODO: Pretty sure I don't need these... but I need a PHP grey beard to tell me otherwise
# extensions: dom, mbstring, zip
# tools: prestissimo
# coverage: pcov
- name: Install Composer dependencies
run: composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist
- name: Run CI checks
run: composer run ci