Skip to content

Merge pull request #242 from donggook-me/master #65

Merge pull request #242 from donggook-me/master

Merge pull request #242 from donggook-me/master #65

Workflow file for this run

name: Python application
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
conda-test:
name: Linux
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: anaconda-client-env
environment-file: environment.yml
python-version: 3.7
auto-activate-base: false
- run: |
conda info
conda list
pip install -e .
conda install pytest
pytest