Skip to content

Commit

Permalink
Fixed CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Oct 31, 2023
1 parent efd534b commit fc58bb5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update && sudo apt-get install nim
- run: |
cd /tmp
wget -q https://nim-lang.org/download/nim-2.0.0-linux_x64.tar.xz
tar xf nim-2.0.0-linux_x64.tar.xz
echo "/tmp/nim-2.0.0/bin" >> $GITHUB_PATH
- uses: ankane/setup-postgres@v1
with:
database: pgvector_nim_test
Expand All @@ -16,5 +20,5 @@ jobs:
cd pgvector
make
sudo make install
- run: nimble install db_connector
- run: nimble -y install db_connector
- run: nim c --run example.nim

0 comments on commit fc58bb5

Please sign in to comment.