File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -62,16 +62,13 @@ jobs:
62
62
working-directory : bindings/python
63
63
run : |
64
64
pdm sync -G :all
65
-
66
- # - name: Install Docker for macOS
67
- # if: matrix.os == 'macos-latest'
68
- # run: |
69
- # brew install docker
70
- # colima start
71
65
72
66
- name : Start Postgres
67
+ env :
68
+ GH_TOKEN : ${{ github.token }}
73
69
run : |
74
- docker run --name pgvecto-rs-demo -e POSTGRES_PASSWORD=mysecretpassword -p 5432:5432 -d tensorchord/pgvecto-rs:latest
70
+ LATEST_STABLE_VERSION=$(gh release list --repo tensorchord/pgvecto.rs --exclude-drafts --exclude-pre-releases --limit 1 | awk '{print $3}')
71
+ docker run --name pgvecto-rs-demo -e POSTGRES_PASSWORD=mysecretpassword -p 5432:5432 -d tensorchord/pgvecto-rs:pg15-${LATEST_STABLE_VERSION}
75
72
76
73
- name : Run Tests
77
74
working-directory : bindings/python
You can’t perform that action at this time.
0 commit comments