We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38fe3da commit 8f81b02Copy full SHA for 8f81b02
1 file changed
.github/workflows/samples-scala-client.yaml
@@ -38,8 +38,19 @@ jobs:
38
- samples/client/petstore/scala-sttp
39
- samples/client/petstore/scala-sttp-circe
40
- samples/client/petstore/scala-sttp4
41
+ services:
42
+ petstore-api:
43
+ image: swaggerapi/petstore
44
+ ports:
45
+ - 80:8080
46
+ env:
47
+ SWAGGER_HOST: http://petstore.swagger.io
48
+ SWAGGER_BASE_PATH: /v2
49
steps:
50
- uses: actions/checkout@v5
51
+ - name: Add hosts to /etc/hosts
52
+ run: |
53
+ sudo echo "127.0.0.1 petstore.swagger.io" | sudo tee -a /etc/hosts
54
- uses: actions/setup-java@v5
55
with:
56
distribution: 'temurin'
0 commit comments