From 0f2c6b3dd8537e9d6aabfcc642f033f8e03cb8f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Garcia?= Date: Wed, 22 Dec 2021 20:07:17 -0300 Subject: [PATCH] Try to fix some required env vars --- .github/workflows/main.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 428f948..d7364f3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 ./... +