Skip to content

Commit 86289d2

Browse files
MAINT: Fix syntax in version selection
GitHub Actions doesn't like a string-ified number in YAML being compared to as a string
1 parent 5cbb01e commit 86289d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
micromamba install ambertools -c conda-forge -yq
8484
8585
- name: Install Foyer
86-
if: ${{ matrix.pydantic-version == "1" }}
86+
if: ${{ matrix.pydantic-version == 1 }}
8787
run: |
8888
micromamba install foyer -c conda-forge -yq
8989

0 commit comments

Comments
 (0)