File tree Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 1
1
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
2
2
# https://github.com/sebastianbergmann/phpunit/blob/master/.github/workflows/ci.yml
3
3
4
+ # https://github.com/ikalnytskyi/action-setup-postgres
5
+ # https://github.com/marketplace/actions/actions-setup-mysql
6
+
4
7
name : " Continuous Integration"
5
8
6
9
on :
@@ -113,19 +116,19 @@ jobs:
113
116
- name : " Install Postgres"
114
117
uses : ikalnytskyi/action-setup-postgres@v6
115
118
with :
119
+ postgres-version : 14
116
120
username : postgres
117
121
password : root
118
122
database : dbtest
119
123
port : 5432
120
124
121
- # - name: "Install MySQL"
122
- # uses: shogo82148/actions-setup-mysql@v1
123
- # with:
124
- # mysql-version: '5.7'
125
- # auto-start: true
126
- #
127
- # - name: "Create MySQL test database"
128
- # run: mysql --user="root" --host="127.0.0.1" -e "CREATE DATABASE dbtest character set UTF8mb4 collate utf8mb4_bin;"
125
+ - name : " Install MySQL"
126
+ uses : shogo82148/actions-setup-mysql@v1
127
+ with :
128
+ mysql-version : " 8.0"
129
+
130
+ - name : " Create MySQL test database"
131
+ run : mysql --user="root" --host="127.0.0.1" -e "CREATE DATABASE dbtest character set UTF8mb4 collate utf8mb4_bin;"
129
132
130
133
# - name: "Install Firebird (Linux)"
131
134
# if: ${{ runner.os == 'Linux' }}
Original file line number Diff line number Diff line change 26
26
<exclude >
27
27
<group >firebird</group >
28
28
<group >mssql</group >
29
+ <!--
29
30
<group>mysql</group>
31
+ <group>pgsql</group>
32
+ <group>sqlite</group>
33
+ -->
30
34
</exclude >
31
35
</groups >
32
36
<php >
You can’t perform that action at this time.
0 commit comments