Skip to content

Fix false detection of array.length and array.clone #62

Fix false detection of array.length and array.clone

Fix false detection of array.length and array.clone #62

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/gradle-cache
- name: Set up java
uses: actions/setup-java@v3
with:
distribution: corretto
java-version: 17
- name: Build
run: ./gradlew check testCodeCoverageReport --stacktrace --no-daemon
- name: Test Report
uses: phoenix-actions/test-reporting@v8
if: success() || failure()
with:
name: JUnit
path: "**/build/test-results/**/TEST-*.xml"
reporter: java-junit