Skip to content

chore: Next snapshot version #306

chore: Next snapshot version

chore: Next snapshot version #306

Workflow file for this run

name: Clean, Build
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
commit-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'true'
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build -PskipSigning=true --stacktrace