Skip to content

use ? to mark ghost residues #34

use ? to mark ghost residues

use ? to mark ghost residues #34

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
sudo apt-get install subversion -y
python -m pip install --upgrade pip
pip install poetry
poetry config virtualenvs.create false
poetry install --no-dev
- name: Run tests
# Here other tests could be added, for now just the api entrypoints
run: |
python -m unittest test_api.py