Skip to content

Version 6.0 - Major Architecture Refactoring and Enhanced Documentation #49

Version 6.0 - Major Architecture Refactoring and Enhanced Documentation

Version 6.0 - Major Architecture Refactoring and Enhanced Documentation #49

Workflow file for this run

name: PHPUnit
on:
push:
branches:
- master
tags:
- "*.*.*"
pull_request:
branches:
- master
jobs:
Build:
runs-on: 'ubuntu-latest'
container: 'byjg/php:${{ matrix.php-version }}-cli'
strategy:
matrix:
php-version:
- "8.4"
- "8.3"
- "8.2"
steps:
- uses: actions/checkout@v4
- run: composer install
- run: ./vendor/bin/psalm
- run: ./vendor/bin/phpunit --stderr
Documentation:
if: github.ref == 'refs/heads/master'
needs: Build
uses: byjg/byjg.github.io/.github/workflows/add-doc.yaml@master
with:
folder: php
project: ${{ github.event.repository.name }}
secrets:
DOC_TOKEN: ${{ secrets.DOC_TOKEN }}