Skip to content

Commit

Permalink
fix(ci): /opt/mssql-tools/bin/sqlcmd tool not found in given path (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
szhajdu authored Jan 3, 2025
1 parent 8b9285f commit 656a30e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request]
jobs:
phpcs:
name: Code style
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout
Expand All @@ -25,7 +25,7 @@ jobs:

tests:
name: Unit tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

services:
mysql:
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
ports:
- 5432:5432
mssql:
image: mcr.microsoft.com/mssql/server:2019-latest
image: mcr.microsoft.com/mssql/server:2022-CU13-ubuntu-20.04
env:
SA_PASSWORD: P@ssw0rd
ACCEPT_EULA: 'Y'
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ services:
- "5432:5432"

mssql:
image: mcr.microsoft.com/mssql/server:2019-latest
image: mcr.microsoft.com/mssql/server:2022-CU13-ubuntu-20.04
environment:
SA_PASSWORD: 'P@ssw0rd'
MSSQL_DATABASE: codeception
Expand Down

0 comments on commit 656a30e

Please sign in to comment.