We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e21ea0f commit f1af61eCopy full SHA for f1af61e
1 file changed
.github/workflows/build.yml
@@ -6,7 +6,7 @@ jobs:
6
strategy:
7
fail-fast: false
8
matrix:
9
- go: ["1.23", "1.22", "1.21"]
+ go: ["1.24", "1.23", "1.22", "1.21"]
10
steps:
11
- uses: actions/checkout@v4
12
- uses: actions/setup-go@v5
@@ -24,5 +24,7 @@ jobs:
24
cd pgvector
25
make
26
sudo make install
27
+ - if: ${{ matrix.go == '1.24' }}
28
+ run: go get -u ./...
29
- run: go generate ./ent && go mod tidy
30
- run: go test -v
0 commit comments