Skip to content

fix(thrift): support both relative and absolute check for idl includes parse to make it compatible with generation tool #387

fix(thrift): support both relative and absolute check for idl includes parse to make it compatible with generation tool

fix(thrift): support both relative and absolute check for idl includes parse to make it compatible with generation tool #387

name: Push Check Linux-X64
on: [ push, pull_request ]
jobs:
build:
strategy:
matrix:
go-version: [1.23.x]
runs-on: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Unit Test
run: |
go test -race ./...