Skip to content

Stop nesting <a> elements #48

Stop nesting <a> elements

Stop nesting <a> elements #48

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 .