Skip to content

Adding workflow:stage-show: Show details of a workflow stage by nam… #7

Adding workflow:stage-show: Show details of a workflow stage by nam…

Adding workflow:stage-show: Show details of a workflow stage by nam… #7

Workflow file for this run

name: Executing Code Coverage
on:
push:
branches:
- main
- develop
- features/**
- test/**
pull_request:
branches:
- main
- develop
- features/**
env:
REQUIRED_PHP_EXTENSIONS: "ctype, filter, hash, iconv, json"
jobs:
checks:
runs-on: ubuntu-latest
strategy:
matrix:
operating-system: ["ubuntu-latest"]
php-versions: ["8.4"]
dependency-stability: ["prefer-none"]
name: P${{ matrix.php-versions }} - ${{ matrix.operating-system}}
steps:
- uses: actions/checkout@v4
- name: Install PHP versions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, bcmath, soap, intl, iconv, fileinfo
coverage: "pcov"
tools: "composer:v2"
- name: Install Dependencies
run: composer install --prefer-dist --no-interaction
- name: Show dir
run: pwd
- name: PHP Version
run: php --version
- name: Platform Check
run: composer check-platform-reqs
- name: Running Tests
run: composer run test-code-ci