Skip to content

Commit

Permalink
Update pest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim-the-Diamond committed Oct 1, 2024
1 parent 3c00d66 commit 3c99081
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/pest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@ jobs:
- name: List Installed Dependencies
run: composer show -D

- name: Show Docker containers
run: docker ps -a
- name: Show databases for root user
run: mysql --protocol=tcp -h localhost -P 3306 -u root -proot_password -e "SHOW DATABASES"
- name: Show databases for user1
run: mysql --protocol=tcp -h localhost -P 3306 -u user1 -puser1_password -e "SHOW DATABASES"

- name: Execute tests
run: vendor/bin/pest --coverage-clover clover.xml
Expand Down

0 comments on commit 3c99081

Please sign in to comment.