Try to fix some required env vars

pull/10/head
Vinícius Garcia 2021-12-22 20:07:17 -03:00
parent d18ed2b1ab
commit 0f2c6b3dd8
1 changed files with 8 additions and 4 deletions

View File

@ -5,12 +5,16 @@ on: push
jobs:
tests:
runs-on: ubuntu-latest
services:
docker-in-docker:
image: docker:dind
steps:
- uses: actions/checkout@v2
- name: Pull Postgres
run: docker pull postgres:14.0
- name: Pull MySQL
run: docker pull mysql:8.0.27
- name: Pull SQLServer
run: docker pull mcr.microsoft.com/mssql/server:2017-latest
- name: Run linters
run: go vet ./...
- name: Run tests
- name: Run Tests
run: go test ./...