Skip to content

Fix windows sizes update (before get) and a little typos #669

Fix windows sizes update (before get) and a little typos

Fix windows sizes update (before get) and a little typos #669

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
tests:
name: Tests (${{matrix.php}}, ${{ matrix.os }}, ${{ matrix.stability }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
php: [ '8.4', '8.5' ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
stability: [ lowest, stable ]
steps:
- name: Checkout
uses: actions/checkout@v5

Check failure on line 20 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
- name: [${{ matrix.stability }}] Setup PHP ${{ matrix.php }} Environment
uses: ./.github/actions/setup-php
with:
os: ${{ matrix.os }}
php: ${{ matrix.php }}
stability: ${{ matrix.stability }}
- name: Execute Tests
run: composer test