Horje
ta-lib github action Code Example
ta-lib github action
name: Run Tests
on: [pull_request]
jobs:
  build:
    name: Setup and run Tests
    runs-on: ubuntu-latest
    defaults:
      run:
        working-directory: ./
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-python@v2
        with:
          python-version: '3.8.9'
      - run: |
          wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz
          tar xvfz ta-lib-0.4.0-src.tar.gz
          cd ta-lib
          ./configure
          make
          sudo make install
      - run: python -m pip install --upgrade pip
      - run: python -m pip install -r requirements.txt
      - run: python mainsite/manage.py test




Shell

Related
install ninja ubuntu Code Example install ninja ubuntu Code Example
random color npm Code Example random color npm Code Example
regex log level info or warn or erro Code Example regex log level info or warn or erro Code Example
crictl image prune Code Example crictl image prune Code Example
how to make a react project a githubpages site Code Example how to make a react project a githubpages site Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10