Skip to content

Bump golang.org/x/text from 0.3.4 to 0.3.8 #43

Bump golang.org/x/text from 0.3.4 to 0.3.8

Bump golang.org/x/text from 0.3.4 to 0.3.8 #43

Workflow file for this run

name: Go build and test
on:
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: ^1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -cover ./...