Skip to content

fix: raw_struct will generate bad code when thrift has typedef #479

fix: raw_struct will generate bad code when thrift has typedef

fix: raw_struct will generate bad code when thrift has typedef #479

Workflow file for this run

name: Pull Request Check
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.17
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Benchmark
run: go test -bench=. -benchmem -run=none ./...
- name: Code Generation Test
run: make testall