File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -37,19 +37,23 @@ jobs:
37
37
ports :
38
38
- 5432:5432
39
39
40
- storage :
41
- image : fsouza/fake-gcs-server
42
- ports :
43
- - 4443:4443
44
- options : >-
45
- --entrypoint '/bin/fake-gcs-server -scheme http -port 4443'
46
-
47
40
strategy :
48
41
max-parallel : 4
49
42
matrix :
50
43
python-version : [3.12]
51
44
52
45
steps :
46
+ # Use docker run directly instead of the `services` key because otherwise it's not possible
47
+ # to pass the `-scheme` flag.
48
+ # See:
49
+ # - https://github.com/fsouza/fake-gcs-server/issues/561
50
+ # - https://github.com/orgs/community/discussions/26688
51
+ - name : Start Fake GCS Server
52
+ run : |
53
+ docker run -d --name fake-gcs-server \
54
+ -p 4443:4443 \
55
+ - fsouza/fake-gcs-server \
56
+ -scheme http
53
57
- uses : actions/checkout@v4
54
58
- name : Set up Python ${{ matrix.python-version }}
55
59
uses : actions/setup-python@v5
You can’t perform that action at this time.
0 commit comments