Add claude GitHub actions 1758892504281 #110
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Integration test | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - "**" | |
| jobs: | |
| integration-test: | |
| strategy: | |
| matrix: | |
| chroma-version: [0.4.24, 0.5.0, 0.5.5, 0.5.15 ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK 8 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '8' | |
| distribution: 'adopt' | |
| cache: maven | |
| - name: Test with Maven | |
| run: mvn --batch-mode clean test | |
| env: | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| COHERE_API_KEY: ${{ secrets.COHERE_API_KEY }} | |
| HF_API_KEY: ${{ secrets.HF_API_KEY }} | |
| CHROMA_VERSION: ${{ matrix.chroma-version }} |