Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
.gitattributes export-ignore
.gitignore export-ignore
.github export-ignore
ncs.* export-ignore
phpstan.neon export-ignore
tests/ export-ignore
.gitattributes export-ignore
.github/ export-ignore
.gitignore export-ignore
CLAUDE.md export-ignore
ncs.* export-ignore
phpstan*.neon export-ignore
tests/ export-ignore

*.sh eol=lf
*.php* diff=php linguist-language=PHP
*.php* diff=php
*.sh text eol=lf
3 changes: 1 addition & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Static Analysis (only informative)
name: Static Analysis

on: [push, pull_request]

Expand All @@ -15,4 +15,3 @@ jobs:

- run: composer install --no-progress --prefer-dist
- run: composer phpstan
continue-on-error: true # is only informative
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
coverage: none

- run: composer install --no-progress --prefer-dist
- run: vendor/bin/tester tests -s -C
- run: composer tester
- if: failure()
uses: actions/upload-artifact@v4
with:
Expand All @@ -39,7 +39,7 @@ jobs:
coverage: none

- run: composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable
- run: vendor/bin/tester tests -s -C
- run: composer tester


code_coverage:
Expand All @@ -53,7 +53,7 @@ jobs:
coverage: none

- run: composer install --no-progress --prefer-dist
- run: vendor/bin/tester -p phpdbg tests -s -C --coverage ./coverage.xml --coverage-src ./src
- run: composer tester -- -p phpdbg --coverage ./coverage.xml --coverage-src ./src
- run: wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.4.3/php-coveralls.phar
- env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading
Loading