We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ac4c91 commit 49cb9feCopy full SHA for 49cb9fe
.github/workflows/build.yml
@@ -27,6 +27,8 @@ jobs:
27
- run: psql -d pgvector_java_test -c "CREATE EXTENSION vector"
28
# Hibernate 7 requires Java 17+
29
- if: ${{ matrix.java < 17 }}
30
- run: |
31
- rm src/test/java/com/pgvector/HibernateTest.java
+ run: rm src/test/java/com/pgvector/HibernateTest.java
+ # Spring JDBC 7 requires Java 17+
32
+ - if: ${{ matrix.java < 17 }}
33
+ run: rm src/test/java/com/pgvector/SpringJDBCTest.java
34
- run: mvn -B -ntp test
0 commit comments