Skip to content

Commit

Permalink
Update the pipelienes again
Browse files Browse the repository at this point in the history
  • Loading branch information
Austin Kregel committed May 15, 2021
1 parent 2b69e85 commit fe18c6f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .env.pipelines
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ APP_URL=http://localhost

LOG_CHANNEL=stack

DB_CONNECTION=sqlite
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=testing
DB_USERNAME=root
DB_PASSWORD=root

BROADCAST_DRIVER=log
CACHE_DRIVER=file
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
run: bash .github/scripts/install-php.sh
- name: Install dependencies
run: |
sudo apt update && sudo apt install sqlite3 -y
sudo systemctl start mysql.service
mysql -uroot -h127.0.0.1 -proot -e 'CREATE DATABASE IF NOT EXISTS testing;'
sudo apt update && sudo apt install -y php-mysql
composer install --prefer-dist --no-progress --no-suggest
- name: Run tests
run: |
Expand Down

0 comments on commit fe18c6f

Please sign in to comment.