We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb267ee commit 1b1c789Copy full SHA for 1b1c789
.github/workflows/ci-main.yml
@@ -110,6 +110,16 @@ jobs:
110
mvn test -Ds3proxy.test.conf=s3proxy-minio.conf -Dtest=AwsSdkTest
111
kill $(pidof minio)
112
113
+ - name: Install fake-gcs-server
114
+ run: go install github.com/fsouza/fake-gcs-server@latest
115
+ - name: Start fake-gcs-server
116
+ run: $HOME/go/bin/fake-gcs-server -backend memory -scheme http -host 127.0.0.1 &
117
+ - name: Maven Test with fake-gcs-server
118
+ run: |
119
+ # TODO: this fails because the credentials are wrong
120
+ # TODO: run other test classes
121
+ mvn test -Ds3proxy.test.conf=s3proxy-fake-gcs-server.conf -Dtest=AwsSdkTest
122
+
123
- name: Install s3-tests
124
run: |
125
python -m pip install --upgrade pip
0 commit comments