refactor: replace httpbin service with docker

This commit is contained in:
lilong.129
2023-07-21 23:16:45 +08:00
parent 36f849ded6
commit 9b30fa2435
15 changed files with 38 additions and 23 deletions

View File

@@ -30,6 +30,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: start httpbin server with docker
run: |
docker pull kennethreitz/httpbin
docker run -p 80:80 kennethreitz/httpbin
- name: Install dependencies
run: |
pip install poetry

View File

@@ -28,6 +28,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: start httpbin server with docker
run: |
docker pull kennethreitz/httpbin
docker run -p 80:80 kennethreitz/httpbin
- name: Install dependencies
run: |
python -m pip install --upgrade pip