Skip to content

Change how we fetch the initial contents to avoid having to rewind in… #40

Change how we fetch the initial contents to avoid having to rewind in…

Change how we fetch the initial contents to avoid having to rewind in… #40

Workflow file for this run

name: Check Composer and PHPUnit
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build_and_test:
runs-on: 'ubuntu-latest'
strategy:
matrix:
php-versions: ['8.1']
steps:
- uses: actions/checkout@v3
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run test suite
run: composer run-script test