Skip to content

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

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 #1143

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.21
- 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.57
- name: Gen
run: go run main.go gen
- name: Test
run: go test -coverprofile=c.out ./...
- name: Coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: miniscruff/changie
file: ./c.out
fail_ci_if_error: true