File tree Expand file tree Collapse file tree 1 file changed +7
-28
lines changed Expand file tree Collapse file tree 1 file changed +7
-28
lines changed Original file line number Diff line number Diff line change 10
10
11
11
jobs :
12
12
test :
13
- runs-on : ubuntu-20.04
13
+ runs-on : ubuntu-latest
14
14
name : Run tests
15
15
steps :
16
- - uses : actions/checkout@v3
16
+ - uses : actions/checkout@v4
17
17
18
18
- uses : actions/setup-python@v4
19
19
with :
20
- python-version : ' 3.6 '
21
- cache : ' pip'
20
+ python-version : " 3.13 "
21
+ cache : " pip"
22
22
23
23
- name : Install Dependencies
24
- run : pip install -r requirements.txt -r requirements-dev.txt
24
+ run : |
25
+ python -m pip install --upgrade pip
26
+ pip install -r requirements.txt -r requirements-dev.txt
25
27
26
28
- name : Run tests
27
29
run : |
28
30
make development
29
31
source virtualenv_run/bin/activate
30
32
make test
31
-
32
- security :
33
- runs-on : ubuntu-20.04
34
- name : Run style/security checks
35
-
36
- steps :
37
- - uses : actions/checkout@v3
38
-
39
- - uses : actions/setup-python@v4
40
- with :
41
- python-version : ' 3.6'
42
- cache : ' pip'
43
-
44
- - name : Install Dependencies
45
- run : pip install -r requirements.txt -r requirements-dev.txt
46
-
47
- - name : Safety Check
48
- shell : bash
49
- run : |
50
- make development
51
- source virtualenv_run/bin/activate
52
- pip install -U safety
53
- safety check -i 44610 -i 51499 -i 51457 -i 39253 -i 44634 -i 50473 -i 52495 -i 53269
You can’t perform that action at this time.
0 commit comments