Skip to content

update title parser #18

update title parser

update title parser #18

Workflow file for this run

name: Build and Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: setup go
uses: actions/setup-go@v2
with:
go-version: '1.19.0'
- name: build and test
run: |
go mod download
go build ./...
go test -v ./...