Skip to content

fix KSP bug leading to multiple instances of the same symbol in multi round processing cases #3

fix KSP bug leading to multiple instances of the same symbol in multi round processing cases

fix KSP bug leading to multiple instances of the same symbol in multi round processing cases #3

Workflow file for this run

name: Run Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
permissions:
checks: write
pull-requests: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Run Tests
run: ./gradlew test
- name: Publish Test Results
uses: dorny/test-reporter@v1
if: always()
with:
name: JUnit 4 Test Results
path: '**/build/test-results/test/TEST-*.xml'
reporter: java-junit
fail-on-error: false