Skip to content

Commit

Permalink
Add redis
Browse files Browse the repository at this point in the history
  • Loading branch information
lancepioch committed Feb 20, 2024
1 parent fececfb commit 249bdf6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/dusk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ jobs:
APP_URL: "http://127.0.0.1:8000"
APP_ENV: dusk
APP_CORS_ALLOWED_ORIGINS: "*"
CACHE_DRIVER: file
DB_USERNAME: root
DB_PASSWORD: root
MAIL_MAILER: log
Expand Down Expand Up @@ -53,6 +52,13 @@ jobs:
- name: Build
run: yarn build:production

- name: Install Redis
run: sudo apt-get install redis-server
- name: Start Redis Server
run: redis-server --daemonize yes
- name: Check Redis Server
run: redis-cli ping

- name: Run Laravel Server
run: php artisan serve --no-reload &

Expand Down

0 comments on commit 249bdf6

Please sign in to comment.