Skip to content

run on start

run on start #65

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.17
uses: actions/setup-go@v1
with:
go-version: 1.17
- name: Check out code into the Go module directory
uses: actions/checkout@v1
with:
fetch-depth: 1
path: go/src/github.com/rafaelsq/wtc
- name: Test
run: go test -race -cover ./...
- name: GolangCI-Lint
uses: golangci/golangci-lint-action@v2
with:
version: latest
skip-build-cache: true
skip-pkg-cache: true