Skip to content

Implemented changes described in comments in the previous PR #79

Implemented changes described in comments in the previous PR

Implemented changes described in comments in the previous PR #79

Workflow file for this run

name: tests ci
# This workflow runs the pipeline with the minimal test dataset to check
# is completed without any errors
on:
pull_request:
push:
jobs:
create-conda-env:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Miniconda
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: myenv
environment-file: environment.yml
- name: Verify Conda environment
run: conda env list
- name: Run your script
run: |
source $CONDA/etc/profile.d/conda.sh
conda activate myenv
pip install .
taranis analyze-schema -i test/MLST_listeria -o analyze_schema_test --cpus 1