We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4024f4e commit 403921cCopy full SHA for 403921c
.github/workflows/test.yml
@@ -23,6 +23,14 @@ jobs:
23
uses: actions/setup-python@v5
24
with:
25
python-version: "3.10"
26
+ - name: Install Nim
27
+ uses: jiro4989/setup-nim-action@v2
28
+ with:
29
+ nim-version: '2.0.8'
30
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
31
+ - name: Install Nimpy
32
+ run: |
33
+ nimble install nimpy
34
- name: Install dependencies
35
run: |
36
python -m pip install uv
install-nim.sh
@@ -0,0 +1,14 @@
1
+#!/bin/bash
2
+
3
+os_type=$(uname)
4
5
+if [[ "$os_type" == "Darwin" ]]; then
6
+ brew install nim
7
+elif [[ "$os_type" == "Linux" ]]; then
8
+ apt-get install nim
9
+else
10
+ echo "This is not a Mac or Linux system."
11
+ exit
12
+fi
13
14
+nimble install nimpy
0 commit comments