Skip to content
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
eff72c6
refactor: tests
RGO230 Jul 6, 2025
17a468a
Merge branch 'master' into 10-controller-refactoring
RGO230 Jul 6, 2025
9fc647c
chore: update requires
RGO230 Jul 6, 2025
e4db244
style: fix
RGO230 Jul 6, 2025
04b98ce
refactor: change expo table name and add id field
RGO230 Jul 6, 2025
4ee4b35
fix:tests
RGO230 Jul 10, 2025
22df6b2
Merge branch 'master' into 10-controller-refactoring
RGO230 Sep 1, 2025
a4b48c1
refactor: remove useless
RGO230 Sep 3, 2025
27991b2
Merge branch 'rguskov/update-config-and-migration' into 10-controller…
RGO230 Sep 4, 2025
69ba2eb
refactor: expo controller tests
RGO230 Sep 15, 2025
0c7d145
Revert "Merge branch 'rguskov/update-config-and-migration' into 10-co…
RGO230 Sep 15, 2025
f1e3f58
refactor: expoControllerTest
RGO230 Oct 2, 2025
f6be4fc
fix:tests
RGO230 Oct 2, 2025
d9bd2f6
fix:tests
RGO230 Oct 2, 2025
0ae5ed5
fix: tests
RGO230 Oct 2, 2025
83e9c81
refactor: make expo controller test with helpers package
RGO230 Oct 22, 2025
0b59ae5
fix: remove useless
RGO230 Oct 22, 2025
78ed16d
chore: remove php 8.2 from github workflow
RGO230 Oct 22, 2025
10c6f8c
fix: remove useless
RGO230 Oct 22, 2025
605dbff
refactor: remove useless
RGO230 Oct 23, 2025
459a9e9
fix: remove useless
RGO230 Oct 23, 2025
959530b
style:fix
RGO230 Nov 2, 2025
14a4f7f
style:fix
RGO230 Nov 4, 2025
68b7f0b
refactor: make correct responses end errors
RGO230 Nov 9, 2025
0e44afd
Update tests/database/migrations/2014_10_12_000000_create_users_table…
DenTray Nov 17, 2025
3121bdc
Update tests/fixtures/ExpoControllerTest/dump.sql
DenTray Nov 17, 2025
6ab4c78
Update tests/database/Models/User.php
DenTray Nov 17, 2025
cae943e
Update tests/database/Models/User.php
DenTray Nov 17, 2025
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
24 changes: 23 additions & 1 deletion .github/workflows/run-tests-with-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,31 @@ on:
jobs:
tests-with-coverage:
runs-on: ubuntu-latest
env:
DB_CONNECTION: pgsql
DB_HOST: 127.0.0.1
DB_PORT: 5432
DB_DATABASE: forge
DB_USERNAME: forge
DB_PASSWORD: secret

services:
postgres:
image: postgres
env:
POSTGRES_DB: forge
POSTGRES_USER: forge
POSTGRES_PASSWORD: secret
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
strategy:
matrix:
php-version: [ "8.2", "8.3", "8.4" ]
php-version: ["8.3", "8.4" ]
steps:
- name: Set up PHP
uses: shivammathur/setup-php@v2
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
}
],
"require": {
"php": "^8.2",
"php": "^8.3",
"alymosul/exponent-server-sdk-php": "1.3.*",
"laravel/framework": ">=11.34"
},
"require-dev": {
"mockery/mockery": "^1.6.12",
"phpunit/phpunit": "^11.5.5",
"orchestra/testbench": "^10.4",
"ronasit/laravel-helpers": "^2.7.1"
"ronasit/laravel-helpers": "^3.5.8"
},
"autoload": {
"psr-4": {
Expand Down
Loading