Skip to content

Bump golang.org/x/text from 0.18.0 to 0.19.0 #17

Bump golang.org/x/text from 0.18.0 to 0.19.0

Bump golang.org/x/text from 0.18.0 to 0.19.0 #17

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Set up Go
uses: actions/setup-go@main
with:
go-version: ">=1.20.0"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./... -race -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@main
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Refresh Go Report Card
uses: creekorful/goreportcard-action@master