File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,11 +10,20 @@ on: # yamllint disable-line rule:truthy
1010 - ' !dependabot/**' # excludes master
1111 workflow_dispatch :
1212
13+ env :
14+ LANG : C.UTF-8
15+
1316jobs :
1417 security :
1518 runs-on : ubuntu-24.04
1619 steps :
1720 - uses : actions/checkout@master
21+ - name : Install Pipenv
22+ run : >
23+ sudo apt install pipenv
24+ - name : Install dependencies with Pipenv
25+ run : |
26+ pipenv sync --dev
1827 - name : Run Snyk to check for vulnerabilities
1928 uses : snyk/actions/python@9adf32b1121593767fc3c057af55b55db032dc04
2029 continue-on-error : true # To make sure that SARIF upload gets called
Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ COPY ./CODE_OF_CONDUCT.md ${WORKDIR}/
4949
5050# Code source
5151COPY ./src/ ${WORKDIR}/src
52- COPY ./requirements.txt ${WORKDIR}/
52+ COPY Pipfile ${WORKDIR}/
53+ COPY Pipfile.lock ${WORKDIR}/
5354COPY ./setup.cfg ${WORKDIR}/
5455COPY ./Makefile ${WORKDIR}/
5556
You can’t perform that action at this time.
0 commit comments