Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f382442

Browse files
committedDec 18, 2024·
install odbc
1 parent 251c525 commit f382442

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
 

‎.github/workflows/build.yml

+3
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,9 @@ jobs:
146146
- name: Checkout
147147
uses: actions/checkout@v4
148148

149+
- name: Install Microsoft ODBC
150+
run: sudo ACCEPT_EULA=Y apt-get install msodbcsql18 -y
151+
149152
- name: Create MS SQL Database
150153
run: docker exec -i mssql /opt/mssql-tools18/bin/sqlcmd -C -S localhost -U SA -P 'YourStrong!Passw0rd' -Q 'CREATE DATABASE nextras_orm_test'
151154

‎tests/databases.github.ini

+1
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,4 @@ username = SA
4747
password = "YourStrong!Passw0rd"
4848
database = nextras_orm_test
4949
port = 1433
50+
TrustServerCertificate = true

0 commit comments

Comments
 (0)
Please sign in to comment.