Skip to content

Initial commit

Initial commit #2

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: shivammathur/setup-php@v2
with:
php-version: '8.5'
- uses: ramsey/composer-install@v3
- run: composer phpunit
static-analysis:
name: Static Analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: shivammathur/setup-php@v2
with:
php-version: '8.5'
- uses: ramsey/composer-install@v3
- run: composer phpcs
- run: composer phpstan