File tree Expand file tree Collapse file tree 2 files changed +1
-63
lines changed
Expand file tree Collapse file tree 2 files changed +1
-63
lines changed Original file line number Diff line number Diff line change 7878 - name : Check the safety of the codebase with Bandit
7979 run : bandit --ini=setup.cfg -r PyFunceble
8080
81- deps_safety_check :
82- name : Check the safety of our dependencies.
83-
84- runs-on : " ${{ matrix.os }}"
85-
86- strategy :
87- fail-fast : false
88- matrix :
89- python_version :
90- - " 3.12"
91- os :
92- - ubuntu-latest
93-
94- steps :
95- - uses : actions/checkout@v6
96- name : Clone repository
97-
98- - name : Set up Python ${{ matrix.python_version }}
99- uses : actions/setup-python@v6
100- with :
101- python-version : ${{ matrix.python_version }}
102-
103- - name : Install dependencies
104- run : |
105- pip install --upgrade pip
106- pip install .
107- pip install safety
108-
109- - name : Check the safety of our dependencies.
110- run : safety check -i 51668 -i 62044 -i 67599 -i 70612
111-
11281 test :
113- needs : [lint, deps_safety_check, sec_check]
82+ needs : [lint, sec_check]
11483 name : " [${{ matrix.os }}-py${{ matrix.python_version }}] Test PyFunceble"
11584
11685 runs-on : " ${{ matrix.os }}"
Original file line number Diff line number Diff line change 4848 - name : Lint tests with Pylint
4949 run : pylint tests
5050
51- deps_safety_check :
52- name : Check the safety of our dependencies.
53-
54- runs-on : " ${{ matrix.os }}"
55-
56- strategy :
57- fail-fast : false
58- matrix :
59- python_version :
60- - " 3.12"
61- os :
62- - ubuntu-latest
63-
64- steps :
65- - uses : actions/checkout@v6
66- name : Clone repository
67-
68- - name : Set up Python ${{ matrix.python_version }}
69- uses : actions/setup-python@v6
70- with :
71- python-version : ${{ matrix.python_version }}
72-
73- - name : Install dependencies
74- run : |
75- pip install --upgrade pip
76- pip install .
77- pip install safety
78-
79- - name : Check the safety of our dependencies.
80- run : safety check -i 51668 -i 62044 -i 67599 -i 70612
81-
8251 sec_check :
8352 name : Check the safety of PyFunceble
8453
You can’t perform that action at this time.
0 commit comments