We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c1288c commit a47aff3Copy full SHA for a47aff3
.github/workflows/CI.yml
@@ -36,6 +36,19 @@ jobs:
36
python-version: '3.10'
37
- name: install uv
38
uses: astral-sh/setup-uv@v5
39
+ - name: Install talib
40
+ run: |
41
+ wget https://sourceforge.net/projects/ta-lib/files/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz/download
42
+ tar -xzf ta-lib-0.4.0-src.tar.gz
43
+ cd ta-lib
44
+ ./configure
45
+ make
46
+ sudo make install
47
+ cd ..
48
+ rm -rf ta-lib
49
+ env:
50
+ TA_INCLUDE_PATH: ${{ github.workspace }}/dependencies/include
51
+ TA_LIBRARY_PATH: ${{ github.workspace }}/dependencies/lib
52
- name: Test
53
run: |
54
uv run pytest
0 commit comments