瀏覽代碼

Update python-app.yml

Add MariaDB Connector/C install
Bryon Bailey 4 年之前
父節點
當前提交
5cbd2accf0
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. 5 1
      .github/workflows/python-app.yml

+ 5 - 1
.github/workflows/python-app.yml

@@ -16,11 +16,15 @@ jobs:
 
     steps:
     - uses: actions/checkout@v2
+    - name: Install MariaDB Connector/C
+      run: |
+        sudo apt-get update
+        sudo apt-get install mariadb-server libmariadb3
     - name: Set up Python 3.10
       uses: actions/setup-python@v2
       with:
         python-version: "3.10"
-    - name: Install dependencies
+    - name: Install Python dependencies
       run: |
         python -m pip install --upgrade pip
         pip install flake8 pipenv