mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-13 11:09:10 +01:00
Print dependency report if failure
This commit is contained in:
parent
9836c0fac2
commit
55fc413ee0
1 changed files with 6 additions and 1 deletions
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-18.04, macOS-latest, windows-2016]
|
os: [ubuntu-latest, macOS-latest, windows-latest]
|
||||||
java: [ '11', '11.0.3', '15', '15.0.5']
|
java: [ '11', '11.0.3', '15', '15.0.5']
|
||||||
name: Test Java ${{ matrix.Java }}, ${{ matrix.os }}
|
name: Test Java ${{ matrix.Java }}, ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
|
@ -35,3 +35,8 @@ jobs:
|
||||||
|
|
||||||
- name: Build with Gradle
|
- name: Build with Gradle
|
||||||
run: ./gradlew build
|
run: ./gradlew build
|
||||||
|
|
||||||
|
- name: Print Dependency Verification Report
|
||||||
|
if: ${{ failure() }}
|
||||||
|
run: cat build/reports/dependency-verification/*/*.html
|
||||||
|
shell: bash
|
||||||
|
|
Loading…
Add table
Reference in a new issue