Try to fix and improve the CI script

pull/10/head
Vinícius Garcia 2021-12-22 19:59:57 -03:00
parent 71a9810582
commit d18ed2b1ab
1 changed files with 7 additions and 3 deletions

View File

@ -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 ./...