File tree 1 file changed +38
-25
lines changed 1 file changed +38
-25
lines changed Original file line number Diff line number Diff line change @@ -21,36 +21,14 @@ jobs:
21
21
shell : bash -l {0}
22
22
23
23
steps :
24
- - name : Checkout
25
- uses : actions/checkout@v1
24
+
25
+ - name : Set up pandas
26
+ uses : .github/actions/setup
26
27
27
28
- name : Looking for unwanted patterns
28
29
run : ci/code_checks.sh patterns
29
30
if : always()
30
31
31
- - name : Cache conda
32
- uses : actions/cache@v2
33
- with :
34
- path : ~/conda_pkgs_dir
35
- key : ${{ runner.os }}-conda-${{ hashFiles('${{ env.ENV_FILE }}') }}
36
-
37
- - uses : conda-incubator/setup-miniconda@v2
38
- with :
39
- activate-environment : pandas-dev
40
- channel-priority : strict
41
- environment-file : ${{ env.ENV_FILE }}
42
- use-only-tar-bz2 : true
43
-
44
- - name : Environment Detail
45
- run : |
46
- conda info
47
- conda list
48
-
49
- - name : Build Pandas
50
- run : |
51
- python setup.py build_ext -j 2
52
- python -m pip install -e . --no-build-isolation --no-use-pep517
53
-
54
32
- name : Linting
55
33
run : ci/code_checks.sh lint
56
34
if : always()
75
53
run : pytest --capture=no --strict-markers scripts
76
54
if : always()
77
55
56
+ benchmarks :
57
+ name : Benchmarks
58
+ runs-on : ubuntu-latest
59
+ defaults :
60
+ run :
61
+ shell : bash -l {0}
62
+
63
+ steps :
64
+
65
+ - name : Checkout
66
+ uses : actions/checkout@v1
67
+
68
+ - name : Cache conda
69
+ uses : actions/cache@v2
70
+ with :
71
+ path : ~/conda_pkgs_dir
72
+ key : ${{ runner.os }}-conda-${{ hashFiles('${{ env.ENV_FILE }}') }}
73
+
74
+ - uses : conda-incubator/setup-miniconda@v2
75
+ with :
76
+ activate-environment : pandas-dev
77
+ channel-priority : strict
78
+ environment-file : ${{ env.ENV_FILE }}
79
+ use-only-tar-bz2 : true
80
+
81
+ - name : Environment Detail
82
+ run : |
83
+ conda info
84
+ conda list
85
+
86
+ - name : Build Pandas
87
+ run : |
88
+ python setup.py build_ext -j 2
89
+ python -m pip install -e . --no-build-isolation --no-use-pep517
90
+
78
91
- name : Running benchmarks
79
92
run : |
80
93
cd asv_bench
You can’t perform that action at this time.
0 commit comments