Add http calls debugging #113
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
docker: | |
strategy: | |
fail-fast: false | |
matrix: | |
docker_version: | |
- "20.10" | |
- "19.03" | |
os: | |
- ubuntu-latest | |
- macos-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Setup Docker | |
uses: docker-practice/actions-setup-docker@master | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
server-id: github | |
cache: 'gradle' | |
- name: Prune Docker System | |
run: docker system prune -a -f | |
- name: Run Tests | |
uses: burrunan/gradle-cache-action@v1 | |
with: | |
arguments: allTests | |
gradle-version: wrapper |