contactmaps 3.14 compatible; black/isort #106
This file contains hidden or 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
| name: Run pytest | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v1 | |
| with: | |
| python-version: 3.12 | |
| - uses: s-weigand/setup-conda@v1 | |
| with: | |
| python-version: 3.12 | |
| activate-conda: true | |
| - run: conda --version | |
| - run: which python | |
| - run: pwd | |
| - run: ls -la | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get install build-essential | |
| conda install pip | |
| pip install openmm | |
| pip install cython | |
| pip install -r requirements.txt | |
| pip install -e . | |
| conda install -c conda-forge libstdcxx-ng=12 | |
| - name: Test with pytest | |
| run: | | |
| pytest |