Skip to content

Add runtime error repair PR example #2

Add runtime error repair PR example

Add runtime error repair PR example #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
maven:
name: Maven verify
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: '21'
cache: maven
- name: Verify SDK
run: mvn --batch-mode --no-transfer-progress verify
- name: Compile examples
run: scripts/validate-examples.sh
- name: Upload package artifact
uses: actions/upload-artifact@v7
with:
name: code-agent-sdk-java
path: target/*.jar
if-no-files-found: error