Skip to content

Commit 074d61b

Browse files
authored
Merge pull request #2 from llm-java/patch/enable-integration-tests
enable integration tests
2 parents 3bb9e6c + b2e17c0 commit 074d61b

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ jobs:
4040
distribution: 'temurin'
4141
java-version: ${{ matrix.jdk }}
4242
- name: Install
43-
# download dependencies, etc, so test log looks better
43+
env:
44+
HF_API_KEY: ${{ secrets.HF_API_KEY }}
45+
PALM_API_KEY: ${{ secrets.PALM_API_KEY }}
4446
run: mvn clean install
4547

4648

parent-pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,14 @@
6969
</dependency>
7070
</dependencies>
7171

72+
<build>
73+
<plugins>
74+
<plugin>
75+
<groupId>org.apache.maven.plugins</groupId>
76+
<artifactId>maven-surefire-plugin</artifactId>
77+
<version>3.1.2</version>
78+
</plugin>
79+
</plugins>
80+
</build>
81+
7282
</project>

0 commit comments

Comments
 (0)