Do not print the name when it's empty #1128
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: gradle | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
gradle: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
java: [17] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- uses: eskatos/gradle-command-action@v1 | |
with: | |
wrapper-cache-enabled: false | |
arguments: check --info --no-daemon --stacktrace | |
- uses: eskatos/gradle-command-action@v1 | |
# Normally, macOS runs faster than the other two | |
if: matrix.os == 'macOS-latest' && matrix.java == '17' | |
with: | |
arguments: "assemble sourcesJar jarDep --info --no-daemon --stacktrace" | |
- uses: actions/upload-artifact@master | |
if: matrix.os == 'macOS-latest' && matrix.java == '17' | |
with: | |
name: API | |
path: api/build/libs | |
- uses: actions/upload-artifact@master | |
if: matrix.os == 'macOS-latest' && matrix.java == '17' | |
with: | |
name: Arend | |
path: cli/build/libs |