Skip to content

Fix GHA CI workflow #10

Fix GHA CI workflow

Fix GHA CI workflow #10

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php_version:
- "8.0"
- "8.1"
- "8.2"
- "8.3"
steps:
- uses: actions/checkout@v2
- uses: php-actions/composer@v6
with:
php_version: ${{ matrix.php_version }}
- run: composer test
- run: bash <(curl -s https://codecov.io/bash)