Skip to content

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

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

Workflow file for this run

name: "go: build binary"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.head_ref }}/go
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: ^1.21
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test -v ./...