Skip to content

Commit

Permalink
Merge pull request #3 from Flowpack/neos-8-compatibility
Browse files Browse the repository at this point in the history
TASK: add neos 8 compatibility
  • Loading branch information
t-heuser authored Oct 23, 2024
2 parents 3250d51 + 24ed244 commit 8ca6c1b
Show file tree
Hide file tree
Showing 11 changed files with 697 additions and 413 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on: [ push ]

jobs:
phpunit:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: php-actions/composer@v6
- name: PHPUnit Tests
uses: php-actions/phpunit@v4
with:
php_extensions: xdebug
bootstrap: vendor/autoload.php
configuration: phpunit.xml
coverage_text: true
env:
XDEBUG_MODE: coverage

phpstan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: php-actions/composer@v6
- uses: php-actions/phpstan@v3
with:
path: Classes Tests
configuration: phpstan.neon
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea
vendor
composer.lock
.phpunit.cache
Loading

0 comments on commit 8ca6c1b

Please sign in to comment.