Skip to content

chore: create contributing docs #424

chore: create contributing docs

chore: create contributing docs #424

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
pest:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.2, 8.3, 8.4]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: xdebug
- name: Install Dependencies
run: composer install --no-interaction --prefer-dist --optimize-autoloader
- name: Tests
run: ./vendor/bin/pest --ci