From 8e51e37a9cf5908ea9887838a7ae413ef3c7437d Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Tue, 8 Feb 2022 09:50:04 +0000 Subject: [PATCH] fixed unit-test action (added symbolic link to requirements.txt) --- .github/workflows/ut-analysis.yml | 4 ++-- analysis-master/requirements.txt | 8 ++++++++ 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 analysis-master/requirements.txt diff --git a/.github/workflows/ut-analysis.yml b/.github/workflows/ut-analysis.yml index 5944756e..a54a5dca 100644 --- a/.github/workflows/ut-analysis.yml +++ b/.github/workflows/ut-analysis.yml @@ -10,12 +10,12 @@ on: branches: [ master ] jobs: - build: + unittest: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8] + python-version: ["3.7", "3.8", "3.9", "3.10"] env: working-directory: ./analysis-master/ diff --git a/analysis-master/requirements.txt b/analysis-master/requirements.txt new file mode 100644 index 00000000..1b3d6fa6 --- /dev/null +++ b/analysis-master/requirements.txt @@ -0,0 +1,8 @@ +numpy +scipy +scikit-learn +six +pyparsing + +pylint +pytest \ No newline at end of file