Skip to content

Commit 559edfb

Browse files
LingManlambda-fairy
authored andcommitted
Wrap Rust version numbers in single quotes on CI
Otherwise we might end up installing Rust 1.5 when we intended to install Rust 1.50.
1 parent ea19e3b commit 559edfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest, macos-latest, windows-latest]
19-
rust: [stable, nightly, 1.48]
19+
rust: [stable, nightly, '1.48']
2020
exclude:
2121
# TODO(#52): Investigate why this is broken
2222
- os: macos-latest
23-
rust: 1.48
23+
rust: '1.48'
2424
steps:
2525
- name: Checkout repository
2626
uses: actions/checkout@v2

0 commit comments

Comments
 (0)