Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

fix the bug: should be dict, not set #394

fix the bug: should be dict, not set

fix the bug: should be dict, not set #394

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [ubuntu-latest, macos-latest, windows-latest]
# python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install openmpi
run: |
sudo apt-get install libopenmpi-dev openmpi-bin
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install torch
pip install -e .[test]
- name: Test with pytest
run: |
pytest --cov=deeprank --cov-report xml:coverage.xml
- name: Coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
coveralls --service=github