Skip to content

[go] update HPFollow schema #94

[go] update HPFollow schema

[go] update HPFollow schema #94

Workflow file for this run

name: CI - Go
on:
push:
branches:
- main
paths:
- "go/**"
- ".github/workflows/ci-go.yml"
pull_request:
branches:
- main
- develop
paths:
- "go/**"
- ".github/workflows/ci-go.yml"
jobs:
test-go:
runs-on: ubuntu-latest
environment:
name: ci-go
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: "1.18.3"
cache-dependency-path: "go/go.sum"
- run: cd go && go test ./...
env:
HPAPP_TEST_APIFY_TOKEN: ${{ secrets.HPAPP_TEST_APIFY_TOKEN }}
- uses: golangci/golangci-lint-action@v3
with:
version: v1.52.2
working-directory: ./go
args: --config=.golangci.yaml --print-issued-lines=false --out-format=colored-line-number --issues-exit-code=0 ./...