Skip to content

refactor: rm github.com/apache/thrift/lib/go/thrift #477

refactor: rm github.com/apache/thrift/lib/go/thrift

refactor: rm github.com/apache/thrift/lib/go/thrift #477

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