Add rotamer libraries for phosphorated residues and functions to preserve original sidechains #41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# tox git actions integration was taken from: | |
# https://github.com/ymyzk/tox-gh-actions/tree/e11a29e2e5c73b6e48f5d4ee379f903476d013c0 | |
# Tests unittest pass, documentation builds, and package builds | |
name: Tests | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ${{ matrix.platform }} | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
python-version: [3.7] | |
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 dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
pip install coverage[toml] virtualenv tox tox-gh-actions | |
# if you use tox-conda you can also add | |
# tox-conda to the above list of dependencies | |
- name: Test with tox | |
run: tox | |
#env: | |
# PLATFORM: ${{ matrix.platform }} | |
## from https://github.com/codecov/codecov-action | |
#- name: Upload coverage to Codecov | |
# uses: codecov/codecov-action@v1 | |
# with: | |
# files: ./coverage.xml | |
# fail_ci_if_error: true | |
# verbose: true |