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 8300981 commit 8792bc5Copy full SHA for 8792bc5
1 file changed
.github/workflows/tests.yml
@@ -15,6 +15,9 @@ jobs:
15
steps:
16
- uses: actions/checkout@v3
17
18
+ - name: Set up TA-Lib
19
+ uses: actions/setup-ta-lib@v1
20
+
21
- name: Set up Python ${{ matrix.python-version }}
22
uses: actions/setup-python@v4
23
with:
@@ -26,14 +29,10 @@ jobs:
26
29
pip install --upgrade pip wheel setuptools
27
30
pip install -r requirements_test.txt
28
31
pip install flake8
- bash ./tools/build_talib_linux.sh
32
33
- name: Build cython modules in-place
34
run: |
35
python setup.py build_ext --inplace
- env:
- TA_INCLUDE_PATH: "ta-lib-install/include"
36
- TA_LIBRARY_PATH: "ta-lib-install/lib"
37
38
- name: Lint with flake8
39
@@ -45,5 +44,3 @@ jobs:
45
44
- name: Test with pytest
46
47
PYTHONPATH=. pytest
48
49
- LD_LIBRARY_PATH: "ta-lib-install/lib"
0 commit comments