Skip to content

Commit

Permalink
TASK: add NEOS 8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
3m5/frohberg authored and t-heuser committed Oct 23, 2024
1 parent 3250d51 commit 24ed244
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 24ed244

Please sign in to comment.