File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 11
11
runs-on : ${{ matrix.os }}
12
12
services :
13
13
sql.data :
14
- image : mcr.microsoft.com/mssql/server:2019-CU25-ubuntu-20.04
14
+ image : mcr.microsoft.com/mssql/server:2019-latest
15
15
env :
16
16
SA_PASSWORD : 1234567890@Eu
17
17
ACCEPT_EULA : Y
27
27
name : PHP${{matrix.php}} - ${{matrix.os}}
28
28
29
29
steps :
30
+
30
31
- name : Clone Repo
31
32
uses : actions/checkout@v4
32
33
56
57
done
57
58
58
59
- name : Setup MSSQL
59
- run : sqlcmd -S localhost -U SA -P 1234567890@Eu -Q 'create database testing_db'
60
+ run : |
61
+ curl https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc
62
+ curl https://packages.microsoft.com/config/ubuntu/22.04/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list
63
+ sudo apt update
64
+ sudo apt install mssql-tools18
65
+ /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 1234567890@Eu -Q 'create database testing_db'
60
66
61
67
- name : Install Dependencies
62
68
run : composer install --prefer-source --no-interaction --no-dev
You can’t perform that action at this time.
0 commit comments