diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 69219b4..9c1ecd1 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -15,14 +15,13 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.8 - uses: actions/setup-python@v2 + - uses: s-weigand/setup-conda@v1 with: python-version: 3.6 - - name: Add conda to system path + - name: Which python run: | - # $CONDA is an environment variable pointing to the root of the miniconda directory - echo $CONDA/bin >> $GITHUB_PATH + conda --version + which python - name: Install dependencies run: | pip install . @@ -33,7 +32,6 @@ jobs: pip install hdbscan pip install loky pip install tridesclous>=1.6.3 - pip install - name: Test with pytest and build coverage report run: | pytest