File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 21
21
shell : bash -l {0}
22
22
23
23
steps :
24
+
24
25
- name : Checkout
25
26
uses : actions/checkout@v1
26
27
68
69
run : pytest --capture=no --strict-markers scripts
69
70
if : always()
70
71
72
+ benchmarks :
73
+ name : Benchmarks
74
+ runs-on : ubuntu-latest
75
+ defaults :
76
+ run :
77
+ shell : bash -l {0}
78
+
79
+ steps :
80
+
81
+ - name : Checkout
82
+ uses : actions/checkout@v1
83
+
84
+ - name : Cache conda
85
+ uses : actions/cache@v2
86
+ with :
87
+ path : ~/conda_pkgs_dir
88
+ key : ${{ runner.os }}-conda-${{ hashFiles('${{ env.ENV_FILE }}') }}
89
+
90
+ - uses : conda-incubator/setup-miniconda@v2
91
+ with :
92
+ activate-environment : pandas-dev
93
+ channel-priority : strict
94
+ environment-file : ${{ env.ENV_FILE }}
95
+ use-only-tar-bz2 : true
96
+
97
+ - name : Build Pandas
98
+ uses : ./.github/actions/build_pandas
99
+
71
100
- name : Running benchmarks
72
101
run : |
73
102
cd asv_bench
You can’t perform that action at this time.
0 commit comments