Skip to content

feat:(storage): add unit test for storage write parquet and manifest (#15) #14

feat:(storage): add unit test for storage write parquet and manifest (#15)

feat:(storage): add unit test for storage write parquet and manifest (#15) #14

Workflow file for this run

name: Go CI
on:
push:
paths:
- '!cpp/**'
- 'go/**'
pull_request:
paths:
- '!cpp/**'
- 'go/**'
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Install dependencies
run: cd go && go mod download
- name: Run tests
run: cd go && go test -v ./...