File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Spring AI Integration Tests
2
2
run-name : ${{ github.actor }} is testing out GitHub Actions 🚀
3
3
on : [push]
4
4
jobs :
5
- test :
5
+ test-azure-openai-model :
6
6
runs-on : ubuntu-latest
7
7
steps :
8
8
- name : Check out repository code
21
21
env :
22
22
AZURE_OPENAI_API_KEY : foobar
23
23
AZURE_OPENAI_ENDPOINT : https://localhost
24
+ test-bedrock-model :
25
+ runs-on : ubuntu-latest
26
+ steps :
27
+ - name : Check out repository code
28
+ uses : actions/checkout@v4
29
+ with :
30
+ repository : spring-projects/spring-ai
31
+ ref : refs/heads/main
32
+ - name : Set up JDK 17
33
+ uses : actions/setup-java@v4
34
+ with :
35
+ java-version : ' 17'
36
+ distribution : ' temurin'
37
+ cache : maven
38
+ - name : Run Bedrock model tests
39
+ run : ./mvnw -pl models/spring-ai-bedrock -Pintegration-tests -Dfailsafe.rerunFailingTestsCount=2 -am verify
40
+ env :
41
+ AWS_ACCESS_KEY_ID : key
42
+ AWS_SECRET_ACCESS_KEY : secret
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ This repository contains workflows that define the integration test automation f
6
6
7
7
- [X] Azure OpenAI tests running as expected locally
8
8
9
- - [ ] Github Action workflow that runs Azure OpenAI tests
9
+ - [X ] Github Action workflow that runs Azure OpenAI tests
10
10
11
11
- [ ] OpenAI tests running as expected locally
12
12
* Understand why some of them are running without ` OPENAI_* ` variables in env
You can’t perform that action at this time.
0 commit comments