update mssql setup?

This commit is contained in:
Dennis Eichhorn 2022-12-16 18:57:04 +01:00
parent 51779fb92b
commit 01be5c32d2

View File

@ -60,13 +60,6 @@ jobs:
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
mssql:
image: mcr.microsoft.com/mssql/server:2019-latest
env:
SA_PASSWORD: c0MplicatedP@ssword
ACCEPT_EULA: 'Y'
ports:
- 1433:1433
redis:
image: redis
ports:
@ -86,6 +79,16 @@ jobs:
uses: actions/checkout@main
with:
fetch-depth: 1
- name: Setup mssql
uses: potatoqualitee/mssqlsuite@v1.7
with:
install: sqlengine, sqlclient, sqlpackage, localdb
version: 2017
sa-password: c0MplicatedP@ssword
show-log: true
collation: Latin1_General_BIN
- name: Run sqlcmd
run: sqlcmd -S localhost -U sa -P c0MplicatedP@ssword -d tempdb -Q "SELECT @@version;"
- name: Checkout Build Repository
uses: actions/checkout@main
with: