Skip to content

delete parser

delete parser #3

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: gopath/github.com/katydid/parser-go-reflect
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.23
- name: Fetch dependencies
run: |
cd gopath/github.com/katydid/parser-go-reflect
go mod download -x
- name: Install tools
run: |
cd gopath/github.com/katydid/parser-go-reflect
go install -x github.com/awalterschulze/checklicense
- name: env
run: env && go env && pwd
- name: tree
run: tree
- name: Build
run: |
cd gopath/github.com/katydid/parser-go-reflect
make build
- name: Test
run: |
cd gopath/github.com/katydid/parser-go-reflect
make test
- name: Checklicencse
run: |
cd gopath/github.com/katydid/parser-go-reflect
make checklicense
- name: Diff
run: |
cd gopath/github.com/katydid/parser-go-reflect
make diff