File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 7878 run : pytest scripts
7979 if : always()
8080
81+ benchmarks :
82+ name : Benchmarks
83+ runs-on : ubuntu-latest
84+ defaults :
85+ run :
86+ shell : bash -l {0}
87+
88+ concurrency :
89+ # https://github.bokerqi.topmunity/t/concurrecy-not-work-for-push/183068/7
90+ group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-benchmarks
91+ cancel-in-progress : true
92+
93+ steps :
94+ - name : Checkout
95+ uses : actions/checkout@v2
96+ with :
97+ fetch-depth : 0
98+
99+ - name : Cache conda
100+ uses : actions/cache@v2
101+ with :
102+ path : ~/conda_pkgs_dir
103+ key : ${{ runner.os }}-conda-${{ hashFiles('${{ env.ENV_FILE }}') }}
104+
105+ - uses : conda-incubator/setup-miniconda@v2
106+ with :
107+ activate-environment : pandas-dev
108+ channel-priority : strict
109+ environment-file : ${{ env.ENV_FILE }}
110+ use-only-tar-bz2 : true
111+
112+ - name : Build Pandas
113+ uses : ./.github/actions/build_pandas
114+
81115 - name : Running benchmarks
82116 run : |
83117 cd asv_bench
You can’t perform that action at this time.
0 commit comments