Skip to content

Upgrade to Jmix 1.6.1 #11

Upgrade to Jmix 1.6.1

Upgrade to Jmix 1.6.1 #11

Workflow file for this run

name: CI pipeline
on:
push:
branches:
- main
pull_request:
jobs:
ci:
name: CI pipeline
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v1
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Run tests
run: ./gradlew test
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
if: always() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/test/TEST-*.xml'