Skip to content

Commit 8c82800

Browse files
author
Andrew J Westlake
committed
Fixed bash equality check in CI action
1 parent fc5d631 commit 8c82800

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
- name: Set variables
9696
id: setvars
9797
run: |
98-
if [[ "${{matrix.rust}} == "1.45.0" ]]; then
98+
if [[ "${{matrix.rust}}" == "1.45.0" ]]; then
9999
echo "::set-env name=features::testing,attributes,tokio-runtime"
100100
else
101101
echo "::set-env name=features::testing,attributes,tokio-runtime,async-std-runtime"

0 commit comments

Comments
 (0)