Skip to content

Update module golang.org/x/tools to v0.25.0 #65

Update module golang.org/x/tools to v0.25.0

Update module golang.org/x/tools to v0.25.0 #65

Workflow file for this run

on:
push:
jobs:
test:
name: Check
strategy:
matrix:
go-version: [1.17.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: check out
uses: actions/checkout@v2
- name: install tools
run: "go install golang.org/x/tools/cmd/goimports@latest && go install honnef.co/go/tools/cmd/staticcheck@latest"
- name: check
run: make check
- name: upload coverage
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}