You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm a bit new to GitHub Actions and I'm using the composer version to include PDO as well as PHPunit in my .yml
I get this error when I run my Github Action:
13) App\test\model\ProductTest::testUpdateProduct
PDOException: could not find driver
Each step in your workflow runs isolated, so you're able to specify the PHP version and available extensions on the composer and phpunit step individually. You've specified the extension in the Composer step, but not on your unit tests, so PHPUnit won't be running in a container with access to that extension.
Hi, I'm a bit new to GitHub Actions and I'm using the composer version to include PDO as well as PHPunit in my .yml
I get this error when I run my Github Action:
So far this is my .yml:
Am I doing something wrong?
The text was updated successfully, but these errors were encountered: