We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 385f9b5 commit 83e78a9Copy full SHA for 83e78a9
.github/workflows/code-checks.yml
@@ -156,3 +156,24 @@ jobs:
156
name: Benchmarks log
157
path: asv_bench/benchmarks.log
158
if: failure()
159
+
160
+ build_docker_dev_environment:
161
+ name: Build Docker Dev Environment
162
+ runs-on: ubuntu-latest
163
+ defaults:
164
+ run:
165
+ shell: bash -l {0}
166
167
+ concurrency:
168
+ # https://github.community/t/concurrecy-not-work-for-push/183068/7
169
+ group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-pre-commit
170
+ cancel-in-progress: true
171
172
+ steps:
173
+ - name: Checkout
174
+ uses: actions/checkout@v2
175
+ with:
176
+ fetch-depth: 0
177
178
+ - name: Build Docker Image
179
+ run: docker build --no-cache --tag pandas-dev-env .
0 commit comments