From dfcca6635ac6540352695f3acf35262cd4a877f1 Mon Sep 17 00:00:00 2001 From: devloop Date: Sun, 29 Dec 2024 13:46:16 +0100 Subject: [PATCH] install pyyaml in build step --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c99fc85..18bc282 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: run: | python -m pip install --upgrade pip pip install -e . - pip install "pylint==3.3.3" "PyYAML>=6.0" + pip install "pylint==3.3.3" "PyYAML>=6.0" - name: Pylint run: | pylint wapiti_swagger/ @@ -36,7 +36,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip3 install -U setuptools pytest + pip3 install -U setuptools pytest "PyYAML>=6.0" - name: Test project run: | pytest