Skip to content

Change env name in ci #3

Change env name in ci

Change env name in ci #3

Workflow file for this run

name: Conda Environment and Pytest
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: myenv
environment-file: environment.yaml
auto-activate-base: false
- name: Install Dependencies
run: |
conda env create -f environment.yaml
source activate myenv
- name: Run Pytest
run: |
pytest tests/