Skip to content

Added in "ExtraMetadata" for CodeReferences and changed CollectedStatType -> DataType. #8

Added in "ExtraMetadata" for CodeReferences and changed CollectedStatType -> DataType.

Added in "ExtraMetadata" for CodeReferences and changed CollectedStatType -> DataType. #8

Workflow file for this run

name: Checks
on:
# Runs on PRs targeting the default branch
pull_request:
branches: ["main"]
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
# Run Tests
test-ubuntu:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
check-latest: true
- name: Gradle Wrapper Validation
uses: gradle/actions/wrapper-validation@v3
- name: Test on Ubuntu
run: ./gradlew assemble check --no-build-cache --no-daemon --stacktrace