Skip to content

chore(deps): bump golang.org/x/text from 0.14.0 to 0.15.0 #84

chore(deps): bump golang.org/x/text from 0.14.0 to 0.15.0

chore(deps): bump golang.org/x/text from 0.14.0 to 0.15.0 #84

Workflow file for this run

name: Go Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Linter
run: make lint-prepare && make lint
- name: Test
run: make test
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Test
run: go test -v ./... -gcflags=all=-l -coverprofile=coverage.txt -covermode=atomic -race
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3