Skip to content

adapt GitHub workflow for PHP 8 only #6 #7

adapt GitHub workflow for PHP 8 only #6

adapt GitHub workflow for PHP 8 only #6 #7

Workflow file for this run

name: "PHP"
on:
push:
branches:
- "main"
- "6-sapnwrfc2-support"
pull_request:
branches:
- "main"
- "6-sapnwrfc2-support"
permissions:
contents: "read"
jobs:
# PHP lint for different PHP versions
build:
runs-on: "ubuntu-latest"
strategy:
matrix:
php-version:
- "8.1"
- "8.2"
env:
CC_TEST_REPORTER_ID: "b55ff60ba178ed6d17d568f49e8c6034e54aee0cfaf765c317a8545aeafe1215"
name: "PHP ${{ matrix.php-version }}"
steps:
- # git checkout
name: "git checkout"
uses: "actions/checkout@v3"
- # Setup PHP
name: "Setup PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
coverage: "xdebug"
- # Check PHP version
name: "Check PHP version"
run: "php -v"
- # Lint PHP files
name: "Lint PHP files"
run: |
for file in $(find ./ -type f -name '*.php'); do
echo -n "==> ${file}: ";
php -l "${file}";
done
- # Validate composer.json and composer.lock
name: "Validate composer.json and composer.lock"
run: "composer validate --strict"
- # Cache Composer packages
name: "Cache Composer packages"
id: "composer-cache"
uses: "actions/cache@v3"
with:
path: "vendor"
key: "${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}"
restore-keys: "${{ runner.os }}-php-"
- # Install dependencies
name: "Install composer dependencies"
run: "composer install --prefer-dist --no-progress --ignore-platform-req=ext-sapnwrfc"
- # PHP_CodeSniffer
name: "PHP_CodeSniffer"
run: "php vendor/bin/phpcs"
- # CodeClimate Reporter Setup
name: "CodeClimate Reporter Setup"
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
./cc-test-reporter before-build
- # Run phpunit
name: "Run phpunit"
run: |
php vendor/bin/phpunit --coverage-clover clover.xml --coverage-text
./cc-test-reporter after-build -t clover --exit-code $?