From d18ed2b1abe39c367b1ee3ebe2e1d6bbe0057906 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Garcia?= Date: Wed, 22 Dec 2021 19:59:57 -0300 Subject: [PATCH] Try to fix and improve the CI script --- .github/workflows/main.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 83e337b..428f948 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,10 +3,14 @@ name: CI on: push jobs: - build: + tests: runs-on: ubuntu-latest - + services: + docker-in-docker: + image: docker:dind steps: - uses: actions/checkout@v2 - - name: Run a one-line script + - name: Run linters + run: go vet ./... + - name: Run tests run: go test ./...