ci: run pre-commit in CI

This commit is contained in:
Andrey Avtomonov 2026-05-13 19:43:58 +02:00
parent be77c3c0bb
commit b63585f252
24 changed files with 171 additions and 127 deletions

View file

@ -35,7 +35,7 @@ The most full-featured connector. Supports schema introspection, foreign key det
connections:
my-postgres:
driver: postgres
url: postgresql://user:password@host:5432/database
url: env:DATABASE_URL
schema: public
readonly: true
```
@ -327,7 +327,7 @@ Standard MySQL/MariaDB connector with full foreign key support and schema intros
connections:
my-mysql:
driver: mysql
url: mysql://user:password@host:3306/database
url: env:MYSQL_DATABASE_URL
readonly: true
```
@ -386,7 +386,7 @@ Connects to Microsoft SQL Server and Azure SQL. Supports multi-schema scanning w
connections:
my-sqlserver:
driver: sqlserver
url: mssql://user:password@host:1433/database?trustServerCertificate=true
url: env:SQLSERVER_DATABASE_URL
readonly: true
```