Skip to content

Bump version of golang.org/x/text to v0.14.0 to mitigate potential se… #52

Bump version of golang.org/x/text to v0.14.0 to mitigate potential se…

Bump version of golang.org/x/text to v0.14.0 to mitigate potential se… #52

Workflow file for this run

name: Go
on:
- push
- pull_request
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v2
with:
go-version: 1.13
- uses: actions/checkout@v3
- name: Get dependencies
run: go mod download
- name: Test
run: go test -v ./...
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.44
args: -c .golangci.yml