Update sqlserver version to see if it will work on Mac M1

pull/24/head
Vinícius Garcia 2022-07-06 21:06:40 -03:00
parent 891aa8c7b1
commit 7adc6473b7
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ jobs:
- name: Pull MariaDB
run: docker pull mariadb:10.8
- name: Pull SQLServer
run: docker pull mcr.microsoft.com/mssql/server:2017-latest
run: docker pull mcr.microsoft.com/mssql/server:2022-latest
- name: Check go version
run: go version
- name: Run linters

View File

@ -37,7 +37,7 @@ func startSQLServerDB(dbName string) (databaseURL string, closer func()) {
resource, err := pool.RunWithOptions(
&dockertest.RunOptions{
Repository: "mcr.microsoft.com/mssql/server",
Tag: "2017-latest",
Tag: "2022-latest",
Env: []string{
"SA_PASSWORD=Sqls3rv3r",
"ACCEPT_EULA=Y",