Skip to content

Commit

Permalink
Quote ruby and postgres versions
Browse files Browse the repository at this point in the history
This helps avoid unexpected versions being used as YAML will omit the .0
  • Loading branch information
stephenbinns committed Mar 6, 2023
1 parent 6c1d4d9 commit 1eda6cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: [2.7, 3.0, 3.1]
ruby-version: ["2.7", "3.0", "3.1"]
rails-version:
- "6.1.5"
- "7.0.4"
- "main"
postgres-version: [9.6, 11, 14]
postgres-version: ["9.6", "11", "14"]
runs-on: ubuntu-latest
services:
postgres:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: [2.7, 3.0, 3.1]
ruby-version: ["2.7", "3.0", "3.1"]
rails-version:
- "6.1.5"
- "7.0.4"
Expand Down

0 comments on commit 1eda6cf

Please sign in to comment.