Skip to content

Commit 656a30e

Browse files
authored
fix(ci): /opt/mssql-tools/bin/sqlcmd tool not found in given path (#80)
1 parent 8b9285f commit 656a30e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push, pull_request]
55
jobs:
66
phpcs:
77
name: Code style
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-22.04
99

1010
steps:
1111
- name: Checkout
@@ -25,7 +25,7 @@ jobs:
2525

2626
tests:
2727
name: Unit tests
28-
runs-on: ubuntu-latest
28+
runs-on: ubuntu-22.04
2929

3030
services:
3131
mysql:
@@ -53,7 +53,7 @@ jobs:
5353
ports:
5454
- 5432:5432
5555
mssql:
56-
image: mcr.microsoft.com/mssql/server:2019-latest
56+
image: mcr.microsoft.com/mssql/server:2022-CU13-ubuntu-20.04
5757
env:
5858
SA_PASSWORD: P@ssw0rd
5959
ACCEPT_EULA: 'Y'

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ services:
3838
- "5432:5432"
3939

4040
mssql:
41-
image: mcr.microsoft.com/mssql/server:2019-latest
41+
image: mcr.microsoft.com/mssql/server:2022-CU13-ubuntu-20.04
4242
environment:
4343
SA_PASSWORD: 'P@ssw0rd'
4444
MSSQL_DATABASE: codeception

0 commit comments

Comments
 (0)