From 533aff548a3a18c5f62f3b8af5fbe5de004dfc1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Schr=C3=B6dinger?= <132720404+Schrodinger71@users.noreply.github.com> Date: Thu, 26 Dec 2024 17:31:39 +0300 Subject: [PATCH] Add Install MariaDB Connector/C for CI/CD --- .github/workflows/ci.yml | 5 +++++ .github/workflows/python-linter.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42819e9..09cb31f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,11 @@ jobs: with: python-version: '3.11' + - name: Install MariaDB Connector/C + run: | + sudo apt-get update + sudo apt-get install -y libmariadb-dev + - name: Cache Python dependencies uses: actions/cache@v3 with: diff --git a/.github/workflows/python-linter.yml b/.github/workflows/python-linter.yml index ecce74d..253cc61 100644 --- a/.github/workflows/python-linter.yml +++ b/.github/workflows/python-linter.yml @@ -20,6 +20,11 @@ jobs: with: python-version: '3.11' + - name: Install MariaDB Connector/C + run: | + sudo apt-get update + sudo apt-get install -y libmariadb-dev + - name: Cache Python dependencies uses: actions/cache@v3 with: