Fix image display behavior during information listing [APPS-02GR] #2019
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
# CI workflow | |
name: Build | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Jobs | |
jobs: | |
# This workflow contains this job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# test against following Java versions: | |
java: [ 11, 17 ] | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v1.4.3 | |
with: | |
java-version: ${{ matrix.java }} | |
# Runs check task | |
- name: Test with Gradle | |
run: ./gradlew --info --stacktrace clean check |