2020-08-25 14:16:08 +03:00
|
|
|
name: prbuild
|
2020-08-19 16:11:03 +03:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
2020-02-24 17:11:17 +03:00
|
|
|
jobs:
|
2020-08-19 16:11:03 +03:00
|
|
|
test:
|
|
|
|
name: test
|
2020-02-24 17:11:17 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-08-19 16:11:03 +03:00
|
|
|
- name: setup
|
2021-02-09 23:04:23 +03:00
|
|
|
uses: actions/setup-go@v2
|
2020-02-24 17:11:17 +03:00
|
|
|
with:
|
2020-08-20 15:23:41 +03:00
|
|
|
go-version: 1.15
|
|
|
|
- name: cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: ${{ runner.os }}-go-
|
2020-10-30 23:52:05 +03:00
|
|
|
- name: sdk checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: sdk deps
|
2020-08-19 16:11:03 +03:00
|
|
|
run: go get -v -t -d ./...
|
2020-10-30 23:52:05 +03:00
|
|
|
- name: sdk test
|
2020-02-24 17:11:17 +03:00
|
|
|
env:
|
2020-08-25 13:44:41 +03:00
|
|
|
INTEGRATION_TESTS: yes
|
2020-08-19 16:11:03 +03:00
|
|
|
run: go test -mod readonly -v ./...
|
2020-10-30 23:52:05 +03:00
|
|
|
- name: tests checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: unistack-org/micro-tests
|
|
|
|
ref: refs/heads/master
|
|
|
|
path: micro-tests
|
|
|
|
fetch-depth: 1
|
|
|
|
- name: tests deps
|
|
|
|
run: |
|
|
|
|
cd micro-tests
|
|
|
|
go mod edit -replace="github.com/unistack-org/micro/v3=../"
|
|
|
|
go get -v -t -d ./...
|
|
|
|
- name: tests test
|
|
|
|
env:
|
|
|
|
INTEGRATION_TESTS: yes
|
|
|
|
run: cd micro-tests && go test -mod readonly -v ./...
|
2020-08-19 16:11:03 +03:00
|
|
|
lint:
|
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: lint
|
2021-02-10 00:35:56 +03:00
|
|
|
uses: golangci/golangci-lint-action@v2
|
2021-02-14 16:16:01 +03:00
|
|
|
# continue-on-error: true
|
2020-08-19 16:11:03 +03:00
|
|
|
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
|