There was an error while loading. Please reload this page.
1 parent 734f8a2 commit f77b9dfCopy full SHA for f77b9df
1 file changed
.github/workflows/build.yml
@@ -8,20 +8,21 @@ jobs:
8
matrix:
9
java: [20, 17, 11, 8]
10
steps:
11
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
12
- uses: actions/setup-java@v3
13
with:
14
java-version: ${{ matrix.java }}
15
distribution: temurin
16
+ cache: maven
17
- uses: ankane/setup-postgres@v1
18
19
database: pgvector_java_test
20
dev-files: true
21
- run: |
22
cd /tmp
- git clone --branch v0.5.0 https://github.com/pgvector/pgvector.git
23
+ git clone --branch v0.5.1 https://github.com/pgvector/pgvector.git
24
cd pgvector
25
make
26
sudo make install
27
- run: psql -d pgvector_java_test -c "CREATE EXTENSION vector"
- - run: mvn test
28
+ - run: mvn -B -ntp test
0 commit comments