Skip to content

Input format UTF-8 added; text styling by CSS, candidate #2 #43

Input format UTF-8 added; text styling by CSS, candidate #2

Input format UTF-8 added; text styling by CSS, candidate #2 #43

Workflow file for this run

name: Test
on:
push:
branches:
pull_request:
types: [opened, synchronize]
branches: [main]
jobs:
build:
strategy:
matrix:
go-version: [1.25.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Check Out Code
uses: actions/checkout@v4
- name: Test Library API For Regressions and Remote Build
run: |
cd ./ascii; go test -race -v .
cd ../utf8; go test -race -v .
cd ../svg; go test -race -v .