Skip to content

Fix SyntaxError

Fix SyntaxError #6

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: .env
environment-file: environment.yaml
auto-activate-base: false
- name: Install Dependencies
run: |
conda create --prefix .env

Check failure on line 22 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 22
conda activate .env/
conda env update --file environment.yaml --prefix .env
pip install -e .
- name: Run Pytest
run: |
pytest tests/