File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1
1
2
2
name : Upgrade
3
3
4
- on : [pull_request]
4
+ on : [pull_request, push ]
5
5
6
6
jobs :
7
7
test :
61
61
- name : Create Database
62
62
run : |
63
63
sudo systemctl start mysql.service
64
- sudo mysql -proot -e 'drop database if exists phplistdb'
65
- sudo mysqladmin -proot create phplistdb
64
+ sudo mysql -proot -e 'drop database if exists phplistdb; create database phplistdb;'
66
65
sudo mysql -proot -e 'create user phplist@"%" identified by "phplist"; grant all on phplistdb.* to phplist@"%"'
67
- sudo gunzip -c tests/phplist-3.6.sql.gz | mysql -proot phplistdb
66
+ sudo gunzip -c tests/phplist-3.6.sql.gz | sudo mysql -proot phplistdb
68
67
69
68
- name : Set bootlist theme
70
69
run : |
98
97
- name : Run BDD Tests UI
99
98
run : |
100
99
cd $GITHUB_WORKSPACE/tests
101
- ../vendor/bin/behat -p chrome -f progress --stop-on-failure --tags=@initialise
102
100
../vendor/bin/behat -p chrome -f progress --tags="~@initialise && ~@wip"
103
101
104
102
- name : Reset Database
Original file line number Diff line number Diff line change 1
1
# file that keeps track of the latest tag in cvs and the corresponding version
2
2
# this automates publishing a new version, when it's tagged
3
3
# if you don't understand this, don't worry. You don't need this file
4
- VERSION=3.6.13
4
+ VERSION=3.7.0
You can’t perform that action at this time.
0 commit comments