-
Notifications
You must be signed in to change notification settings - Fork 416
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Fix copy/paste issues in actions
- Loading branch information
1 parent
af5a2a0
commit 6ee5aab
Showing
4 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ runs: | |
conda-${{ inputs.type }}-${{ runner.os }} | ||
conda-${{ inputs.type }}- | ||
- name: Set up Python ${{ matrix.python-version }} | ||
- name: Set up Python ${{ inputs.python-version }} | ||
uses: conda-incubator/[email protected] | ||
with: | ||
miniforge-version: latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,10 +19,10 @@ inputs: | |
runs: | ||
using: composite | ||
steps: | ||
- name: Set up Python ${{ matrix.python-version }} | ||
- name: Set up Python ${{ inputs.python-version }} | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
python-version: ${{ inputs.python-version }} | ||
|
||
# Use pip to find the right cache dir and then sets up caching for it | ||
- name: Get pip cache dir | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters