Skip to content

hotfix: added choices to argparse #135

hotfix: added choices to argparse

hotfix: added choices to argparse #135

Workflow file for this run

name: Test Python package
on:
push:
branches:
- '**'
pull_request:
branches: [ master ]
jobs:
test:
name: Testing
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -l {0}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: rmsd-dev
environment-file: environment.yml
python-version: ${{ matrix.python-version }}
- run: |
pip install git+https://github.com/qmlcode/qml@develop
- run: |
ls
pwd
which python
conda info
- run: |
make test
- run: |
pre-commit run --all-files