Skip to content

Handle text rendering for divs without looking ahead in the stack #50

Handle text rendering for divs without looking ahead in the stack

Handle text rendering for divs without looking ahead in the stack #50

Workflow file for this run

name: Go
on:
push:
branches: '**'
pull_request:
branches: '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: "go.mod"
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Lint
uses: golangci/golangci-lint-action@v2
with:
args: "--disable-all -E misspell -E unused -E govet"