Skip to content

nit

nit #95

Workflow file for this run

name: Automated Tests
on:
push:
branches:
- master
- main
tags:
- "v*"
pull_request:
jobs:
generate:
name: Generate Classes
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
- name: Install dependencies
run: composer install
- name: Generate classes.php
run: php gen.php
- name: Die if there are changes
run: git diff --exit-code
tests:
name: Unit Tests (PHP ${{ matrix.php }})
strategy:
matrix:
php: ["8.2", "8.3", "8.4", "8.5"]
runs-on: ubuntu-24.04
steps:
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: pcov
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: vendor
key: vendor-${{ hashFiles('composer.json') }}
- run: composer install
- run: composer test
static:
name: Static Analysis
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: vendor
key: vendor-${{ hashFiles('composer.json') }}
- run: composer install
- run: composer analyse-ci
format:
name: Formatting
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: vendor
key: vendor-${{ hashFiles('composer.json') }}
- run: composer install
- run: composer format && git diff --exit-code