Skip to content

Commit

Permalink
add smtp-sink
Browse files Browse the repository at this point in the history
  • Loading branch information
michield committed Jan 2, 2024
1 parent 8989c91 commit dc24a0a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

name: CI

on: [pull_request]
on: [pull_request, push]

jobs:
test:
Expand Down Expand Up @@ -69,8 +69,7 @@ jobs:
- name: Create Database
run: |
sudo systemctl start mysql.service
sudo mysql -proot -e 'drop database if exists phplistdb'
sudo mysqladmin -proot create phplistdb
sudo mysql -proot -e 'drop database if exists phplistdb; create database phplistdb;'
sudo mysql -proot -e 'create user phplist@"%" identified by "phplist"; grant all on phplistdb.* to phplist@"%"'
- name: Set bootlist theme
Expand All @@ -88,7 +87,8 @@ jobs:
cp -fv tests/ci/config.php public_html/lists/config/config.php
mkdir -p output/screenshots
touch output/screenshots/README.md
mkdir -p build/mails
mkdir -p output/mails
smtp-sink -c -d "output/mails/%Y%m%d%H/%M." 2500 1024 &
./bin/start-selenium > output/selenium.log 2>&1 &
sleep 5
sudo php -S 0.0.0.0:80 -t public_html > /dev/null 2>&1 &
Expand Down

0 comments on commit dc24a0a

Please sign in to comment.