Skip to content

build(deps): bump golang.org/x/net from 0.0.0-20191105084925-a882066a44e0 to 0.17.0 in /go-client #96

build(deps): bump golang.org/x/net from 0.0.0-20191105084925-a882066a44e0 to 0.17.0 in /go-client

build(deps): bump golang.org/x/net from 0.0.0-20191105084925-a882066a44e0 to 0.17.0 in /go-client #96

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
---
# workflow name
name: Golang Lint and Unit Test - go-client
# on events
on:
# run on each pull request
pull_request:
types: [ synchronize, reopened, opened ]
branches:
- master
- 'v[0-9]+.*' # release branch
- ci-test # testing branch for github action
- '*dev'
paths:
- go-client/**
# for manually triggering workflow
workflow_dispatch:
# workflow tasks
jobs:
build:
name: Test and Lint
runs-on: ubuntu-20.04
steps:
- name: Install thrift
# go-client imports thrift package of 0.13.0, so we must use thrift-compiler 0.13.0
# to generate code as well. The thrift-compiler version on ubuntu-20.04 is 0.13.0
run: sudo apt-get install -y thrift-compiler
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Run Test
run: ./test.sh
working-directory: ./go-client
- uses: codecov/codecov-action@v2
with:
working-directory: ./go-client
# because some files are generated after building, so lint after that at last
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.29
working-directory: ./go-client