Skip to content

Commit

Permalink
Merge branch 'release/0.8.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
pprkut committed Dec 23, 2023
2 parents a12cd05 + 34ed047 commit 92fc686
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 101 deletions.
105 changes: 10 additions & 95 deletions .github/workflows/php-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,98 +6,13 @@ name: PHP Tests
on: [push, pull_request]

jobs:
phpunit:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
name: "PHP-${{ matrix.php-versions }}: PHPUnit"
strategy:
matrix:
php-versions: ['8.1']
experimental: [false]
include:
- php-versions: 8.2
experimental: true
- php-versions: 8.3
experimental: true
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit:9.5.x
extensions: http, msgpack, gettext, mysqli, uopz, xdebug, uuid

- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"

- name: Install dependencies
run: composer update

- name: Install GNU gettext
run: sudo apt install gettext language-pack-de language-pack-nl

- name: Generate German locale
run: sudo locale-gen de_DE

- name: Generate Dutch locale
run: sudo locale-gen nl_NL

- name: Generate localization files
run: support/gen_l10n.sh

- name: Run PHPunit
run: phpunit --configuration tests/phpunit.xml --coverage-clover=coverage.xml

- name: Collect code coverage
uses: codecov/codecov-action@v3
with:
files: ./coverage.xml

phpcs:
runs-on: ubuntu-latest
continue-on-error: false
name: "PHPCS"
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Codestyle checkout
uses: actions/checkout@v3
with:
repository: 'lunr-php/lunr-coding-standard'

# Relative path under $GITHUB_WORKSPACE to place the repository
path: 'codestyle'

- name: Setup PHPCS
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
tools: cs2pr, phpcs

- name: Run PHPCS
run: phpcs -q --report=checkstyle src --standard=$GITHUB_WORKSPACE/codestyle/Lunr | cs2pr

phpstan:
runs-on: ubuntu-latest
continue-on-error: false
name: "PHPStan"
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup PHPStan
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
tools: phpstan
extensions: uopz

- name: Install dependencies
run: composer update

- name: Run PHPStan
run: phpstan analyze src -l4 --configuration tests/phpstan.neon.dist
php-tests:
uses: lunr-php/actions-templates/.github/workflows/php-composer-l10n.yml@master
with:
phpstan-level: 4
allow-style-failures: false
allow-phpstan-failures: false
phpcs-whitelist: index.php.sample tests/phan.config.php tests/phpstan.autoload.inc.php tests/test.bootstrap.inc.php
php-extensions: http, msgpack, gettext, uopz, xdebug, uuid
stable-php-versions: '["8.1"]'
experimental-php-versions: '["8.2","8.3"]'
2 changes: 2 additions & 0 deletions tests/phan.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,5 @@
'PhanTypeObjectUnsetDeclaredProperty',
],
];

?>
13 changes: 7 additions & 6 deletions tests/test.bootstrap.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@

$base = __DIR__ . '/..';

// Define application config lookup path
$paths = [
get_include_path(),
$base . '/src',
];

set_include_path(
$base . '/src:' .
$base . '/config:' .
$base . '/tests:' .
$base . '/tests/statics:' .
$base . '/tests/statics/Core:' .
get_include_path()
implode(':', $paths)
);

if (file_exists($base . '/vendor/autoload.php') == TRUE)
Expand Down

0 comments on commit 92fc686

Please sign in to comment.