File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
{{ cookiecutter.project_slug }}/.github Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,9 @@ version: 2
22
33updates :
44- package-ecosystem : pip
5- directory : " /"
5+ directories :
6+ - " /"
7+ - " /.github/utils"
68 schedule :
79 interval : weekly
810 day : monday
Original file line number Diff line number Diff line change 1+ pip-tools==7.5.0
Original file line number Diff line number Diff line change @@ -61,12 +61,17 @@ jobs:
6161 run : |
6262 python -m pip install --upgrade pip
6363 pip install -U setuptools wheel
64- pip install -e .[dev]
64+ pip install -r .github/utils/requirements_ci.txt
65+
66+ - name : Prepare for pip-audit{% raw %}
67+ run : pip-compile --output-file=${{ runner.temp }}/requirements.txt --all-extras --allow-unsafe ${{ github.workspace }}/pyproject.toml
6568
6669 - name : Run pip-audit
6770 uses : pypa/gh-action-pip-audit@v1.1.0
71+ with :
72+ inputs : ${{ runner.temp }}/requirements.txt
6873
69- pytest:{% raw %}
74+ pytest :
7075 name : pytest (${{ matrix.os[1] }}-py${{ matrix.python-version }})
7176 runs-on : ${{ matrix.os[0] }}
7277
You can’t perform that action at this time.
0 commit comments