Skip to content

Bump golang.org/x/text from 0.14.0 to 0.15.0 #1149

Bump golang.org/x/text from 0.14.0 to 0.15.0

Bump golang.org/x/text from 0.14.0 to 0.15.0 #1149

Workflow file for this run

name: test
on:
push:
branches: [ main ]
paths:
- '.github/workflows/**'
- 'cmd/**'
- 'core/**'
- 'then/**'
- 'main.go'
- 'go.sum'
pull_request:
branches: [ main ]
paths:
- '.github/workflows/**'
- 'cmd/**'
- 'core/**'
- 'then/**'
- 'main.go'
- 'go.sum'
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Check out code
uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
# Required: the version of golangci-lint is required and must be specified
# without patch version: we always use the latest patch version.
version: v1.58
- name: Gen
run: go run main.go gen
- name: Test
run: go test -coverprofile=c.out ./...
- name: Coverage
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: ./c.out
force-coverage-parser: go