Skip to content

Fix pug whitespace capture (#27) #37

Fix pug whitespace capture (#27)

Fix pug whitespace capture (#27) #37

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
# Comment
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.20"]
name: Test on ${{ matrix.go }}
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: 1.19
- name: Download dependencies
run: go get -t ./...
- name: Run tests
run: go test -v ./...