Skip to content

chore: Changed integrationTest task name #2

chore: Changed integrationTest task name

chore: Changed integrationTest task name #2

Workflow file for this run

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