Skip to content

feat: 新增 微信客服账号 / 微信客服接待人员 / 获取加入企业二维码 / 客户群opengid转换 #300

feat: 新增 微信客服账号 / 微信客服接待人员 / 获取加入企业二维码 / 客户群opengid转换

feat: 新增 微信客服账号 / 微信客服接待人员 / 获取加入企业二维码 / 客户群opengid转换 #300

Workflow file for this run

name: Go
on:
push:
branches:
- develop
- master
- staging
- trying
pull_request:
branches:
- develop
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.17', 'oldstable', 'stable' ]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Lint
uses: golangci/[email protected]
with:
version: v1.55
- name: Test
run: go test -v ./...
# Added to summarize the matrix (otherwise we would need to list every single
# job in bors.toml)
# thanks https://forum.bors.tech/t/bors-with-github-workflows/426/4
tests-result:
name: Tests result
if: always()
needs:
- build
runs-on: ubuntu-latest
steps:
- name: Mark the job as a success
if: needs.build.result == 'success'
run: exit 0
- name: Mark the job as a failure
if: needs.build.result == 'failure'
run: exit 1