Skip to content

Commit

Permalink
Use GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
prwater committed Sep 21, 2024
1 parent 1a40239 commit 51749c8
Show file tree
Hide file tree
Showing 42 changed files with 836 additions and 2,012 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
/.phpunit.result.cache
/bin/
/composer.lock
/custom.task.properties
/custom.type.properties
/docs/
/test/coverage.xml
/test/etc/routines.json
/test/report/
/vendor/
1 change: 1 addition & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<arg value="-x"/>
<arg value="test/unit-test.sh"/>
</exec>
<delete file="test/etc/routines.json" quiet="true"/>
<move file="test/psql/rename" tofile="test/psql/ test_escape ' &quot; @ $ ! ." overwrite="true" haltonerror="false"/>
<exec executable="bin/phpunit" passthru="true" checkreturn="true"/>
<move file="test/psql/ test_escape ' &quot; @ $ ! ." tofile="test/psql/rename" overwrite="true"/>
Expand Down
12 changes: 5 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,15 @@
"ext-json": "*",
"ext-pdo": "*",
"setbased/exception": "^2.3.0",
"setbased/helper-cast": "^3.0.0",
"setbased/helper-cast": "^3.0.1",
"setbased/helper-code-store-php": "^2.6.0",
"setbased/php-stratum-backend": "^6.0.0",
"setbased/php-stratum-common": "^6.3.1",
"setbased/php-stratum-middle": "^5.11.0"
"setbased/php-stratum-common": "^7.0.0",
"setbased/php-stratum-middle": "^5.12.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phing/phing": "^3.0.0-RC4",
"phpunit/phpunit": "^9.5.28",
"phing/phing": "^3.0.0",
"phpunit/phpunit": "^10.5.35",
"setbased/php-stratum": "^6.3.1"
},
"autoload": {
Expand Down
4 changes: 2 additions & 2 deletions src/Backend/SqlitePdoBackend.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ public function createRoutineLoaderWorker(Config $settings, StratumStyle $io): ?
/**
* @inheritDoc
*/
public function createRoutineWrapperGeneratorWorker(Config $settings,
public function createRoutineWrapperGeneratorWorker(Config $settings,
StratumStyle $io): ?RoutineWrapperGeneratorWorker
{
return new SqlitePdoRoutineWrapperGeneratorPdoWorker($settings, $io);
return new SqlitePdoRoutineWrapperGeneratorWorker($settings, $io);
}

//--------------------------------------------------------------------------------------------------------------------
Expand Down
Loading

0 comments on commit 51749c8

Please sign in to comment.