2021-01-19 16:51:58 +03:00
|
|
|
name: build
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2022-03-05 19:09:31 +03:00
|
|
|
- v3
|
2021-01-19 16:51:58 +03:00
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: setup
|
2022-04-11 22:53:11 +03:00
|
|
|
uses: actions/setup-go@v3
|
2021-01-19 16:51:58 +03:00
|
|
|
with:
|
2022-03-07 13:46:11 +03:00
|
|
|
go-version: 1.17
|
2021-01-19 16:51:58 +03:00
|
|
|
- name: checkout
|
2022-03-05 19:09:31 +03:00
|
|
|
uses: actions/checkout@v3
|
2021-01-19 16:51:58 +03:00
|
|
|
- name: cache
|
2022-03-22 09:27:35 +03:00
|
|
|
uses: actions/cache@v3
|
2021-01-19 16:51:58 +03:00
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: ${{ runner.os }}-go-
|
|
|
|
- name: deps
|
|
|
|
run: go get -v -t -d ./...
|
|
|
|
- name: test
|
|
|
|
env:
|
|
|
|
INTEGRATION_TESTS: yes
|
|
|
|
run: go test -mod readonly -v ./...
|
|
|
|
lint:
|
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
2022-03-05 19:09:31 +03:00
|
|
|
uses: actions/checkout@v3
|
2021-01-19 16:51:58 +03:00
|
|
|
- name: lint
|
2022-03-05 19:09:31 +03:00
|
|
|
uses: golangci/golangci-lint-action@v3.1.0
|
2021-01-19 16:51:58 +03:00
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
|
|
|
|
version: v1.30
|
|
|
|
# Optional: working directory, useful for monorepos
|
|
|
|
# working-directory: somedir
|
|
|
|
# Optional: golangci-lint command line arguments.
|
|
|
|
# args: --issues-exit-code=0
|
|
|
|
# Optional: show only new issues if it's a pull request. The default value is `false`.
|
|
|
|
# only-new-issues: true
|