Skip to content

MTC-6142 Add new version in config.php #17

MTC-6142 Add new version in config.php

MTC-6142 Add new version in config.php #17

Workflow file for this run

name: ciUnitTests
on:
pull_request:
branches:
- 'main'
jobs:
integration:
name: CI Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP Environment
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
- name: Install composer requirements.
run: composer install
- name: Run PHPUnit
run: ./vendor/bin/phpunit --testsuite unit --coverage-cobertura=coverage.xml
- name: Code Coverage
uses: irongut/[email protected]
with:
filename: coverage.xml
badge: true
format: 'markdown'
output: 'both'
- name: Write to Job Summary
run: cat code-coverage-results.md >> $GITHUB_STEP_SUMMARY