Skip to content

Bump php to ^8.0, add tooling, linting, fixes #18

Bump php to ^8.0, add tooling, linting, fixes

Bump php to ^8.0, add tooling, linting, fixes #18

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: PHPUnit
on: [ push, pull_request ]
jobs:
build-test:
runs-on: ubuntu-latest
permissions:
contents: write
statuses: write
outputs:
lock: ${{ steps.hash.outputs.lock }}
cache: ${{ steps.composer-cache.outputs.cache }}
strategy:
fail-fast: true
matrix:
php-versions: [ '8.0', '8.1', '8.2', '8.3' ]
stability: [ 'stable', 'lowest' ]
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer
extensions: json, dom, curl, libxml, mbstring
coverage: xdebug
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Get composer.lock or composer.json hash for caching
id: hash
shell: bash
run: |
if [ -f composer.lock ]; then
echo "lock=${{ hashFiles('**/composer.lock') }}" >> $GITHUB_OUTPUT
else
echo "lock=${{ hashFiles('**/composer.json') }}" >> $GITHUB_OUTPUT
fi
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: ${{ outputs.cache }}

Check failure on line 56 in .github/workflows/phpunit.yml

View workflow run for this annotation

GitHub Actions / PHPUnit

Invalid workflow file

The workflow is not valid. .github/workflows/phpunit.yml (Line: 56, Col: 17): Unrecognized named-value: 'outputs'. Located at position 1 within expression: outputs.cache .github/workflows/phpunit.yml (Line: 57, Col: 16): Unrecognized named-value: 'outputs'. Located at position 1 within expression: outputs.lock
key: ${{ runner.os }}-php-${{ matrix.php }}-${{ outputs.lock }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php }}-${{ outputs.lock }}
${{ runner.os }}-php-${{ matrix.php }}-
${{ runner.os }}-php-
- name: Install Dependencies (prefer-${{ matrix.stability }})
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-${{ matrix.stability }}
- name: Configure matchers
uses: mheap/phpunit-matcher-action@v1
- name: Execute composer test (Unit and Feature tests)
run: composer test:ci