Skip to content

Open Api example test #9

Open Api example test

Open Api example test #9

Workflow file for this run

name: CI
on:
push: ~
workflow_dispatch: ~
jobs:
tests:
runs-on: ubuntu-latest
steps:
- # Copies the repository files to the Action Runner
name: Checkout Repository
uses: actions/checkout@v3
- # Installs PHP and other necessary tools
name: Setup PHP
uses: shivammathur/[email protected]
with:
php-version: 8.3
- # Installs and caches PHP dependencies
name: Install Dependencies
uses: ramsey/[email protected]
- # Validates composer.json structure and required fields
name: Validate composer.json
run: composer validate --ansi --strict --no-check-publish
- # Runs code quality tools, like phpstan etc.
name: Run Code Quality Tools
run: composer analyse
- # Runs unit and integration tests, like phpspec, phpunit etc.
name: Run Tests
run: composer test