Skip to content

Commit

Permalink
CI: Add quotes around versions (#59)
Browse files Browse the repository at this point in the history
The yaml parser used by GitHub can't tell apart `1` and `1.0` if they're numbers, so they'll point at the same version. Wrapping them in quotes gets around that.
  • Loading branch information
SaschaMann authored Dec 8, 2020
1 parent ee08d15 commit ad85491
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
fail-fast: false
matrix:
version:
- 1.0
- 1 # automatically expands to the latest stable 1.x release of Julia
- '1.0'
- '1' # automatically expands to the latest stable 1.x release of Julia
- nightly
os:
- ubuntu-latest
Expand Down

0 comments on commit ad85491

Please sign in to comment.