From a888ba9fc24d75efd200aabf19b47f8d40c0048d Mon Sep 17 00:00:00 2001 From: DAWells Date: Wed, 3 Jul 2024 10:14:03 +0100 Subject: [PATCH] Install HLAfreq before testing --- .github/workflows/python-package.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/python-package.yaml b/.github/workflows/python-package.yaml index a243cfe..b294a7c 100644 --- a/.github/workflows/python-package.yaml +++ b/.github/workflows/python-package.yaml @@ -29,6 +29,9 @@ jobs: python -m pip install --upgrade pip python -m pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Install HLAfreq + run: | + pip install . - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names