ci.yml consistently uses kebab case

This commit is contained in:
Jack Christensen 2021-03-06 15:01:44 -06:00
parent cf5894e092
commit a0350a932a

View File

@ -14,15 +14,15 @@ jobs:
strategy: strategy:
matrix: matrix:
go_version: [1.15, 1.16] go-version: [1.15, 1.16]
pg_version: [9.6, 10, 11, 12, 13] pg-version: [9.6, 10, 11, 12, 13]
steps: steps:
- name: Set up Go 1.x - name: Set up Go 1.x
uses: actions/setup-go@v2 uses: actions/setup-go@v2
with: with:
go-version: ${{ matrix.go_version }} go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory - name: Check out code into the Go module directory
uses: actions/checkout@v2 uses: actions/checkout@v2
@ -30,7 +30,7 @@ jobs:
- name: Setup database server for testing - name: Setup database server for testing
run: ci/setup_test.bash run: ci/setup_test.bash
env: env:
PGVERSION: ${{ matrix.pg_version }} PGVERSION: ${{ matrix.pg-version }}
- name: Test - name: Test
run: go test -v -race ./... run: go test -v -race ./...