diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ec8889c..936a877 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,8 @@ jobs: - name: Run Snyk to check for vulnerabilities uses: snyk/actions/python@master env: - COMMAND: "python setup.py install" + COMMAND: "pip install poetry && poetry config virtualenvs.create false && poetry install" SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: - args: --file=setup.py + command: monitor + diff --git a/setup.py b/setup.py index 99faf31..0f27112 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ description="Example App", test_suite='tests', - # Dependent packages (distributions) + # DependentS packages (distributions) install_requires=[ 'Flask==0.10.1', 'Flask-Testing==0.4.2',