Skip to content

Commit

Permalink
isolate failing test
Browse files Browse the repository at this point in the history
Signed-off-by: Fabio Di Fabio <[email protected]>
  • Loading branch information
fab-10 committed Aug 25, 2023
1 parent 0a1b973 commit d7c62ea
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,21 @@ jobs:
${{ runner.os }}-gradle-${{ hashFiles('**/gradle/versions.gradle') }}
${{ runner.os }}-gradle-
- name: Assemble
run: ./gradlew --no-daemon clean spotlessCheck build
# - name: Spotless
# run: ./gradlew clean spotlessCheck

- name: Test
run: ./gradlew :ethereum:core:test

- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
with:
name: JUnit Tests # Name of the check run which will be created
path: '**/test-results/test/*.xml' # Path to test results
reporter: java-junit # Format of test results
list-suites: 'failed'
list-tests: 'failed'

- name: Store distribution artifacts
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit d7c62ea

Please sign in to comment.