-
Notifications
You must be signed in to change notification settings - Fork 30
51 lines (44 loc) · 1.1 KB
/
test-docker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
name: Test Docker images and Binder integration
on:
push:
branches: [main]
paths:
- .binder/*
- Dockerfile
- pyproject.toml
pull_request:
branches: [main]
paths:
- .binder/*
- Dockerfile
- pyproject.toml
jobs:
test-docker-image:
runs-on: ubuntu-latest
concurrency:
group: test-docker-${{ github.ref }}
cancel-in-progress: true
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and test
uses: docker/build-push-action@v6
with:
context: .
target: full
tags: hydromt
load: true
build-args: |
PIXIENV=full-py311
- name: Run Tests
run: docker run --env NUMBA_DISABLE_JIT=1 --rm hydromt pytest
- name: Test Binder integration with repo2docker
run: |
pip install jupyter-repo2docker
repo2docker . echo 'success!'