Skip to content

Commit

Permalink
Update all examples
Browse files Browse the repository at this point in the history
  • Loading branch information
goanpeca committed Dec 20, 2019
1 parent 89a5b0d commit f1c6d3e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/example-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.7', '2.7']
steps:
- uses: goanpeca/action-setup-conda@master
- uses: goanpeca/setup-miniconda@master
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/example-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Ex2 Linux
runs-on: 'ubuntu-latest'
steps:
- uses: goanpeca/action-setup-conda@master
- uses: goanpeca/setup-miniconda@master
with:
miniconda-version: 'latest'
activate-environment: foo
Expand All @@ -37,7 +37,7 @@ jobs:
name: Ex2 Mac
runs-on: 'macos-latest'
steps:
- uses: goanpeca/action-setup-conda@develop
- uses: goanpeca/setup-miniconda@master
with:
miniconda-version: 'latest'
activate-environment: foo
Expand All @@ -61,7 +61,7 @@ jobs:
name: Ex2 Windows
runs-on: 'windows-latest'
steps:
- uses: goanpeca/action-setup-conda@develop
- uses: goanpeca/setup-miniconda@master
with:
miniconda-version: 'latest'
activate-environment: foo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/example-3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2
- uses: goanpeca/action-setup-conda@master
- uses: goanpeca/setup-miniconda@master
with:
activate-environment: anaconda-client-env
environment-file: etc/example-environment.yml
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Setup Conda Action
# Setup Miniconda

This action sets up a [Miniconda](https://docs.conda.io/en/latest/miniconda.html) installation to use the [Conda](https://docs.conda.io/projects/conda/en/latest/) package and environment manager by either locating the Miniconda installation bundled with the available runners or by installing a specific Miniconda3 version. By default this action will also create a test environment.

Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 'Setup Conda'
name: 'Setup Miniconda'
author: Gonzalo Peña-Castellanos (@goanpeca)
description: 'Set up Conda package and environment manager.'
description: 'Set up Conda package and environment manager with Miniconda.'
inputs:
miniconda-version:
description: 'If provided, this version of miniconda will be downloaded and installed. Visit https://repo.continuum.io/miniconda/ for more information on available versions.'
Expand Down

0 comments on commit f1c6d3e

Please sign in to comment.