Skip to content

Bump golang.org/x/text from 0.19.0 to 0.21.0 #520

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

Bump golang.org/x/text from 0.19.0 to 0.21.0 #520

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
fail-fast: false
matrix:
target:
- goos: js
goarch: wasm
- goos: darwin
goarch: amd64
- goos: darwin
goarch: arm64
- goos: linux
goarch: amd64
- goos: windows
goarch: amd64
go:
- '1.22.x'
- '1.23.x'
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- run: go version
- name: Go vet
run: go vet -v ./...
- name: Check coverage
uses: shogo82148/actions-goveralls@v1
with:
flag-name: Go-${{ matrix.go }}
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true