We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58d7aa3 commit 9a4f2bdCopy full SHA for 9a4f2bd
.github/workflows/build.yml
@@ -7,9 +7,11 @@ jobs:
7
- uses: actions/checkout@v4
8
- run: |
9
cd /tmp
10
- wget -q https://nim-lang.org/download/nim-2.2.0-linux_x64.tar.xz
11
- tar xf nim-2.2.0-linux_x64.tar.xz
12
- echo "/tmp/nim-2.2.0/bin" >> $GITHUB_PATH
+ wget -q https://nim-lang.org/download/nim-$NIM_VERSION-linux_x64.tar.xz
+ tar xf nim-$NIM_VERSION-linux_x64.tar.xz
+ echo "/tmp/nim-$NIM_VERSION/bin" >> $GITHUB_PATH
13
+ env:
14
+ NIM_VERSION: 2.2.4
15
- uses: ankane/setup-postgres@v1
16
with:
17
database: pgvector_nim_test
0 commit comments