Remove broken SuperCommand #244
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 Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
tests: | |
name: "Integration testing" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Set up iWF environment" | |
run: docker compose -f script/docker-compose.yml up -d | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: zulu | |
java-version: 8 | |
- uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-version: 7.5 | |
- run: git submodule update --init --recursive && sleep 30 && gradle build | |
- name: Dump docker logs | |
if: always() | |
uses: jwalton/gh-docker-logs@v2 | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |