Skip to content

new anthropic models updated #117

new anthropic models updated

new anthropic models updated #117

Workflow file for this run

# Builds every branch other than main, so that any change pushed to GitHub in a feature branch can be built and tested
name: Build branch
on:
push:
branches-ignore:
- main
pull_request:
branches-ignore:
- main
jobs:
build_branch:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/[email protected]
- name: Setup Java
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 23
- name: Setup Gradle
uses: gradle/actions/[email protected]
- name: Build
run: ./gradlew -PjvmOnlyBuild=false build
env:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}