Skip to content

[WIP] Automated tests are added to the project #2163

[WIP] Automated tests are added to the project

[WIP] Automated tests are added to the project #2163

name: Verify Build
on:
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
verification:
name: Verification
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'adopt'
# @todo the init script from setup-gradle interferes with the BVS tests
# - name: Set up Gradle
# uses: gradle/actions/setup-gradle@v4
# with:
# develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}
- name: Build with Gradle
run: ./gradlew build
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}