Skip to content

Bump version to 1.4.2 #72

Bump version to 1.4.2

Bump version to 1.4.2 #72

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
gradle:
runs-on: ubuntu-latest
steps:
# Checkout
- uses: actions/checkout@v1
# Setup JDK version
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: '17'
# Execute clean build
- name: Clean
run: ./gradlew :clean
# Execute assemble
- name: Assemble
run: ./gradlew :assemble
# Execute unit tests
- name: Unit Test
run: ./gradlew :jvmTest