Skip to content

Commit

Permalink
Updating miniconda version to latest to attempt to get tests running
Browse files Browse the repository at this point in the history
  • Loading branch information
kathatherine committed Apr 4, 2024
1 parent 099f3fc commit 989031a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: false
miniconda-version: py37_4.10.3
miniconda-version: "latest"
auto-activate-base: true
activate-environment: ""
- name: Install build dependencies
shell: bash -l {0}
shell: bash -el {0}
run: |
conda config --append channels conda-forge
conda install -y conda-build conda-verify flake8 pydocstyle yapf==0.30.0 sphinx pydata-sphinx-theme==0.14.4 sphinx-copybutton sphinx-notfound-page
- name: Verify formatting compliance
shell: bash -l {0}
shell: bash -el {0}
run: |
if ! yapf --diff --recursive anaconda_project; then
echo "----"
Expand All @@ -39,15 +39,15 @@ jobs:
flake8 anaconda_project
pydocstyle anaconda_project
- name: Build the documentation as a test
shell: bash -l {0}
shell: bash -el {0}
run: |
cd docs
make html
- name: Build the package
shell: bash -l {0}
shell: bash -el {0}
run: conda build --no-test conda.recipe
- name: Reduce the size of the build artifact
shell: bash -l {0}
shell: bash -el {0}
run: rm -rf ${CONDA}/conda-bld/{git_cache,work,anaconda-project*,*/.cache}
- name: Upload the build artifact
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 989031a

Please sign in to comment.