Skip to content

Commit

Permalink
fix yaml syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
gavincabbage committed Sep 18, 2019
1 parent 30e481e commit 48f59e9
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,25 +47,25 @@ jobs:
s3:
image: localstack/localstack:latest
env:
- SERVICES=s3
SERVICES: s3
postgres:
image: healthcheck/postgres
env:
- POSTGRES_DB=testdb
- POSTGRES_PASSWORD=password
POSTGRES_DB: testdb
POSTGRES_PASSWORD: password
mariadb:
image: healthcheck/mariadb
env:
- MYSQL_DATABASE=testdb
- MYSQL_ROOT_PASSWORD=password
MYSQL_DATABASE: testdb
MYSQL_ROOT_PASSWORD: password
steps:
- uses: actions/checkout@v1
- name: Run integration tests
run: go test -p 1 -tags=integration -covermode=atomic -timeout=60s ./...
env:
- AWS_ACCESS_KEY_ID=bogus
- AWS_SECRET_KEY=bogus
- AWS_REGION=us-east-1
- AWS_ENDPOINT=http://s3:4572
- POSTGRES_URL=postgres://postgres:password@postgres/testdb?sslmode=disable
- MARIADB_URL=root:password@tcp(mariadb:3306)/testdb?charset=utf8&parseTime=True&loc=Local
AWS_ACCESS_KEY_ID: bogus
AWS_SECRET_KEY: bogus
AWS_REGION: us-east-1
AWS_ENDPOINT: http://s3:4572
POSTGRES_URL: postgres://postgres:password@postgres/testdb?sslmode=disable
MARIADB_URL: root:password@tcp(mariadb:3306)/testdb?charset=utf8&parseTime=True&loc=Local

0 comments on commit 48f59e9

Please sign in to comment.