Skip to content

Commit

Permalink
strings
Browse files Browse the repository at this point in the history
  • Loading branch information
marccampbell committed May 27, 2020
1 parent 5a258cd commit 7ad55c4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yaml
Expand Up @@ -36,7 +36,7 @@ jobs:
needs: build
strategy:
matrix:
postgres_version: [10.13, 11.8, 12.3]
postgres_version: ["10.13", "11.8", "12.3"]
steps:
- uses: actions/checkout@v2
- name: Download schemahero binary
Expand All @@ -52,7 +52,7 @@ jobs:
needs: build
strategy:
matrix:
mysql_version: [5.6, 5.7, 8.0]
mysql_version: ["5.6", "5.7", "8.0"]
steps:
- uses: actions/checkout@v2
- name: Download schemahero binary
Expand All @@ -68,7 +68,7 @@ jobs:
needs: build
strategy:
matrix:
cockroachdb_version: [v19.2.7, v20.1.0]
cockroachdb_version: ["v19.2.7", "v20.1.0"]
steps:
- uses: actions/checkout@v2
- name: Download schemahero binary
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tagged-release.yaml
Expand Up @@ -35,7 +35,7 @@ jobs:
needs: build
strategy:
matrix:
postgres_version: [10.13, 11.8, 12.3]
postgres_version: ["10.13", "11.8", "12.3"]
steps:
- uses: actions/checkout@v2
- name: Download schemahero binary
Expand All @@ -51,7 +51,7 @@ jobs:
needs: build
strategy:
matrix:
mysql_version: [5.6, 5.7, 8.0]
mysql_version: ["5.6", "5.7", "8.0"]
steps:
- uses: actions/checkout@v2
- name: Download schemahero binary
Expand All @@ -67,7 +67,7 @@ jobs:
needs: build
strategy:
matrix:
cockroachdb_version: [v19.2.7, v20.1.0]
cockroachdb_version: ["v19.2.7", "v20.1.0"]
steps:
- uses: actions/checkout@v2
- name: Download schemahero binary
Expand All @@ -77,7 +77,7 @@ jobs:
path: bin/
- run: chmod +x bin/schemahero
- run: make -C integration/tests/cockroach ${{matrix.cockroachdb_version}}

goreleaser:
runs-on: ubuntu-latest
needs:
Expand Down

0 comments on commit 7ad55c4

Please sign in to comment.