Try to simplify CI script

This commit is contained in:
Vinícius Garcia 2022-04-21 10:06:35 -03:00
parent 76bad8c8f2
commit 6227e23466

View File

@ -13,12 +13,10 @@ jobs:
run: docker pull mysql:8.0.27
- name: Pull SQLServer
run: docker pull mcr.microsoft.com/mssql/server:2017-latest
- name: Run go vet
run: go vet ./...
- name: Check go version
run: go version
- name: Run linters
run: go install honnef.co/go/tools/cmd/staticcheck@latest && bash -c "$(go env GOPATH)/bin/staticcheck ./..."
run: go vet ./... && go install honnef.co/go/tools/cmd/staticcheck@latest && bash -c "$(go env GOPATH)/bin/staticcheck ./..."
- name: Run Tests
run: ./scripts/run-all-tests.sh
- name: Run Coverage