Skip to content

Fix image display behavior during information listing [APPS-02GR] #2019

Fix image display behavior during information listing [APPS-02GR]

Fix image display behavior during information listing [APPS-02GR] #2019

Workflow file for this run

# 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