Skip to content

docs: consolidate README into docs and add download link #8

docs: consolidate README into docs and add download link

docs: consolidate README into docs and add download link #8

Workflow file for this run

name: PHP CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [8.3]
steps:
- uses: actions/checkout@v4
- name: Use PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer
- name: Install dependencies
run: |
composer install --no-progress --prefer-dist
- name: Lint
run: |
composer lint