Skip to content

Export document to jsonFile one by one #19

Export document to jsonFile one by one

Export document to jsonFile one by one #19

Workflow file for this run

name: Linux Build & Unit tests
on:
push:
branches: [ "v2" ]
pull_request:
types: [ opened, synchronize, reopened, ready_for_review ]
jobs:
test:
strategy:
matrix:
go-version: [ 1.20.x ]
os: [ ubuntu-latest ]
name: Checking
runs-on: ${{ matrix.os }}
steps:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Check out code
uses: actions/checkout@v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...