Skip to content

initial commit

initial commit #1

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: composer
- name: Install Dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run Tests
run: vendor/bin/phpunit
- name: Static Analysis
run: vendor/bin/phpstan analyse --testdox --memory-limit=2G
- name: Code Format
run: vendor/bin/pint --test