Skip to content

Commit 83e78a9

Browse files
committed
add job "build_docker_dev_environment"
1 parent 385f9b5 commit 83e78a9

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/code-checks.yml

+21
Original file line numberDiff line numberDiff line change
@@ -156,3 +156,24 @@ jobs:
156156
name: Benchmarks log
157157
path: asv_bench/benchmarks.log
158158
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

Comments
 (0)