Skip to content

Commit 2959612

Browse files
committed
CI
1 parent c8729b3 commit 2959612

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,9 +468,9 @@ jobs:
468468
run: |
469469
# Install sqlcmd
470470
curl https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc
471-
sudo add-apt-repository "$(wget -qO- https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/prod.list)"
471+
curl https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list
472472
sudo apt-get update
473-
sudo apt-get install -y mssql-tools18 unixodbc-dev
473+
sudo ACCEPT_EULA=Y apt-get install -y mssql-tools18 unixodbc-dev
474474
# Create test database
475475
/opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P 'TestPassword123!' -C -Q "CREATE DATABASE test_db"
476476

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Rust](https://img.shields.io/badge/Rust-stable-orange.svg)](https://rust-lang.org)
77

88
The extension is powered by Rust 🦀 and [SQLx](https://github.com/launchbadge/sqlx), built
9-
using [ext-php-rs](https://github.com/davidcole1340/ext-php-rs). It enables safe, fast, and expressive
9+
using [ext-php-rs](https://github.com/extphprs/ext-php-rs). It enables safe, fast, and expressive
1010
database access with additional SQL syntax. It comes with a powerful [query builder](QUERY-BUILDER.md).
1111

1212
**Postgres**, **MySQL** and **Mssql** protocols are natively supported. Other protocols may require a custom wrapper.

0 commit comments

Comments
 (0)