From 28a2bb37f112556cdcc335cfcc665a5b3cf22abe Mon Sep 17 00:00:00 2001 From: Anthony Bretaudeau Date: Tue, 20 Aug 2024 15:09:22 +0200 Subject: [PATCH] fix --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a28924..bf59355 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: python-version: 3.8 - name: Install Flake8 run: | - pip install flake8 flake8-import-order + pip install flake8 - name: Flake8 run: flake8 --ignore=E501,W504 biomaj_download/*.py biomaj_download/download @@ -27,6 +27,8 @@ jobs: python-version: 3.8 - name: Install requirements run: | + sudo apt update + sudo apt install libcurl4-openssl-dev libssl-dev pip install pytest python setup.py install - name: Run tests