File tree 1 file changed +10
-10
lines changed
1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -23,53 +23,53 @@ jobs:
23
23
24
24
- name : Looking for unwanted patterns
25
25
run : ci/code_checks.sh patterns
26
- if : true
26
+ if : always()
27
27
28
28
- name : Setup environment and build pandas
29
29
run : ci/setup_env.sh
30
- if : true
30
+ if : always()
31
31
32
32
- name : Linting
33
33
run : |
34
34
source activate pandas-dev
35
35
ci/code_checks.sh lint
36
- if : true
36
+ if : always()
37
37
38
38
- name : Dependencies consistency
39
39
run : |
40
40
source activate pandas-dev
41
41
ci/code_checks.sh dependencies
42
- if : true
42
+ if : always()
43
43
44
44
- name : Checks on imported code
45
45
run : |
46
46
source activate pandas-dev
47
47
ci/code_checks.sh code
48
- if : true
48
+ if : always()
49
49
50
50
- name : Running doctests
51
51
run : |
52
52
source activate pandas-dev
53
53
ci/code_checks.sh doctests
54
- if : true
54
+ if : always()
55
55
56
56
- name : Docstring validation
57
57
run : |
58
58
source activate pandas-dev
59
59
ci/code_checks.sh docstrings
60
- if : true
60
+ if : always()
61
61
62
62
- name : Typing validation
63
63
run : |
64
64
source activate pandas-dev
65
65
ci/code_checks.sh typing
66
- if : true
66
+ if : always()
67
67
68
68
- name : Testing docstring validation script
69
69
run : |
70
70
source activate pandas-dev
71
71
pytest --capture=no --strict scripts
72
- if : true
72
+ if : always()
73
73
74
74
- name : Running benchmarks
75
75
run : |
87
87
else
88
88
echo "Benchmarks did not run, no changes detected"
89
89
fi
90
- if : true
90
+ if : always()
91
91
92
92
- name : Publish benchmarks artifact
93
93
uses : actions/upload-artifact@master
You can’t perform that action at this time.
0 commit comments