Skip to content
Merged
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
7 changes: 6 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,10 @@ jobs:
strategy:
matrix:
payload:
- { laravel: '11.*', php: '8.4', 'testbench': '9.*', collision: '8.*'}
- { laravel: '11.*', php: '8.3', 'testbench': '9.*', collision: '8.*'}
- { laravel: '11.*', php: '8.2', 'testbench': '9.*', collision: '8.*'}
- { laravel: '10.*', php: '8.4', 'testbench': '8.*', collision: '7.*'}
- { laravel: '10.*', php: '8.3', 'testbench': '8.*', collision: '7.*'}
- { laravel: '10.*', php: '8.2', 'testbench': '8.*', collision: '7.*'}
- { laravel: '10.*', php: '8.1', 'testbench': '8.*', collision: '7.*'}
Expand All @@ -89,4 +91,7 @@ jobs:
composer require "laravel/framework:${{ matrix.payload.laravel }}" "orchestra/testbench:${{ matrix.payload.testbench }}" "nunomaduro/collision:${{ matrix.payload.collision }}" --no-interaction --no-update
composer update --prefer-stable --prefer-dist --no-interaction
- name: Execute tests
run: composer test
run: |
php -v | head -n 1
vendor/bin/testbench | head -n 1
composer test
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/vendor/
composer.lock
.idea/
.DS_Store
.phpunit.result.cache
Expand Down
6 changes: 6 additions & 0 deletions app.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM serversideup/php:8.3-fpm

USER root
RUN install-php-extensions bcmath

USER www-data
Loading