Skip to content

fix: add better EastAsian awareness #469

fix: add better EastAsian awareness

fix: add better EastAsian awareness #469

Workflow file for this run

name: linux
on: [push]
jobs:
build:
name: build
runs-on: [ubuntu-latest]
strategy:
matrix:
go: ["stable", "oldstable"]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
id: go
- name: Go version
run: go version
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test ./...