Skip to content

Commit f77b9df

Browse files
committed
Improved CI
1 parent 734f8a2 commit f77b9df

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,21 @@ jobs:
88
matrix:
99
java: [20, 17, 11, 8]
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- uses: actions/setup-java@v3
1313
with:
1414
java-version: ${{ matrix.java }}
1515
distribution: temurin
16+
cache: maven
1617
- uses: ankane/setup-postgres@v1
1718
with:
1819
database: pgvector_java_test
1920
dev-files: true
2021
- run: |
2122
cd /tmp
22-
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
2324
cd pgvector
2425
make
2526
sudo make install
2627
- run: psql -d pgvector_java_test -c "CREATE EXTENSION vector"
27-
- run: mvn test
28+
- run: mvn -B -ntp test

0 commit comments

Comments
 (0)