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 0ff8a60 commit 7d41275Copy full SHA for 7d41275
.github/workflows/build_test.yml
@@ -383,6 +383,15 @@ jobs:
383
python-version: ${{ matrix.python-version }}
384
- name: Display Python version
385
run: python -c "import sys; print(sys.version)"
386
+ - name: Set up Java
387
+ uses: actions/setup-java@v4 # for wiremock
388
+ with:
389
+ java-version: 11
390
+ distribution: 'temurin'
391
+ java-package: 'jre'
392
+ - name: Fetch Wiremock
393
+ shell: bash
394
+ run: curl https://repo1.maven.org/maven2/org/wiremock/wiremock-standalone/3.11.0/wiremock-standalone-3.11.0.jar --output .wiremock/wiremock-standalone.jar
395
- name: Setup parameters file
396
shell: bash
397
env:
0 commit comments