Skip to content

Commit 71ee582

Browse files
committed
Apply the actionlint check to the altest updates
1 parent 9d9ac1e commit 71ee582

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/conda-package-cf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
116116
- name: Collect dependencies
117117
run: |
118-
CHANNELS=(-c $GITHUB_WORKSPACE/channel ${{ env.CHANNELS }})
118+
CHANNELS=(-c "$GITHUB_WORKSPACE"/channel ${{ env.CHANNELS }})
119119
conda create -n ${{ env.TEST_ENV_NAME }} "$PACKAGE_NAME" python=${{ matrix.python_ver }} ${{ matrix.numpy }} "${CHANNELS[@]}" --only-deps --dry-run > lockfile
120120
121121
- name: Display lockfile
@@ -139,7 +139,7 @@ jobs:
139139
140140
- name: Install mkl_fft
141141
run: |
142-
CHANNELS=(-c $GITHUB_WORKSPACE/channel ${{ env.CHANNELS }})
142+
CHANNELS=(-c "$GITHUB_WORKSPACE"/channel ${{ env.CHANNELS }})
143143
conda create -n ${{ env.TEST_ENV_NAME }} python=${{ matrix.python_ver }} ${{ matrix.numpy }} "$PACKAGE_NAME" pytest scipy "${CHANNELS[@]}"
144144
# Test installed packages
145145
conda list -n ${{ env.TEST_ENV_NAME }}

.github/workflows/conda-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
118118
- name: Collect dependencies
119119
run: |
120-
CHANNELS=(-c $GITHUB_WORKSPACE/channel ${{ env.CHANNELS }})
120+
CHANNELS=(-c "$GITHUB_WORKSPACE"/channel ${{ env.CHANNELS }})
121121
conda create -n ${{ env.TEST_ENV_NAME }} "$PACKAGE_NAME" python=${{ matrix.python }} "${CHANNELS[@]}" --only-deps --dry-run > lockfile
122122
123123
- name: Display lockfile
@@ -141,7 +141,7 @@ jobs:
141141
142142
- name: Install mkl_fft
143143
run: |
144-
CHANNELS=(-c $GITHUB_WORKSPACE/channel ${{ env.CHANNELS }})
144+
CHANNELS=(-c "$GITHUB_WORKSPACE"/channel ${{ env.CHANNELS }})
145145
conda create -n ${{ env.TEST_ENV_NAME }} "$PACKAGE_NAME"=${{ env.PACKAGE_VERSION }} python=${{ matrix.python }} pytest "${CHANNELS[@]}"
146146
conda install -n ${{ env.TEST_ENV_NAME }} "scipy>=1.10" "${CHANNELS[@]}"
147147
# Test installed packages

0 commit comments

Comments
 (0)