2021-06-23 08:10:49 +03:00
|
|
|
name: Run Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
2021-08-19 10:46:31 +03:00
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: '^1.16'
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup golangci-lint
|
|
|
|
uses: golangci/golangci-lint-action@v2
|
|
|
|
with:
|
2021-08-21 16:45:30 +03:00
|
|
|
version: v1.42.0
|
2021-08-19 10:46:31 +03:00
|
|
|
args: --verbose
|
2021-06-23 08:10:49 +03:00
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest]
|
2021-09-06 03:21:03 +03:00
|
|
|
go: [1.13, 1.14, 1.15, 1.16, 1.17]
|
2021-06-23 08:10:49 +03:00
|
|
|
test-tags: ['', nomsgpack]
|
2021-08-19 10:46:31 +03:00
|
|
|
include:
|
|
|
|
- os: ubuntu-latest
|
|
|
|
go-build: ~/.cache/go-build
|
|
|
|
- os: macos-latest
|
|
|
|
go-build: ~/Library/Caches/go-build
|
2021-06-23 08:10:49 +03:00
|
|
|
name: ${{ matrix.os }} @ Go ${{ matrix.go }} ${{ matrix.test-tags }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
env:
|
|
|
|
GO111MODULE: on
|
|
|
|
TESTTAGS: ${{ matrix.test-tags }}
|
|
|
|
GOPROXY: https://proxy.golang.org
|
|
|
|
steps:
|
|
|
|
- name: Set up Go ${{ matrix.go }}
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go }}
|
|
|
|
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: ${{ github.ref }}
|
2021-08-19 10:46:31 +03:00
|
|
|
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
${{ matrix.go-build }}
|
|
|
|
~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
2021-06-23 08:10:49 +03:00
|
|
|
|
|
|
|
- name: Run Tests
|
|
|
|
run: make test
|
|
|
|
|
|
|
|
- name: Upload coverage to Codecov
|
2021-08-19 10:46:31 +03:00
|
|
|
uses: codecov/codecov-action@v2
|
|
|
|
with:
|
|
|
|
flags: ${{ matrix.os }},go-${{ matrix.go }},${{ matrix.test-tags }}
|
2021-06-23 08:10:49 +03:00
|
|
|
notification-gitter:
|
|
|
|
needs: test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Notification failure message
|
|
|
|
if: failure()
|
|
|
|
run: |
|
|
|
|
PR_OR_COMPARE="$(if [ "${{ github.event.pull_request }}" != "" ]; then echo "${{ github.event.pull_request.html_url }}"; else echo "${{ github.event.compare }}"; fi)"
|
|
|
|
curl -d message="GitHub Actions [$GITHUB_REPOSITORY]($PR_OR_COMPARE) ($GITHUB_REF) [normal]($GITHUB_API_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID) ($GITHUB_RUN_NUMBER)" -d level=error https://webhooks.gitter.im/e/7f95bf605c4d356372f4
|
|
|
|
- name: Notification success message
|
|
|
|
if: success()
|
|
|
|
run: |
|
|
|
|
PR_OR_COMPARE="$(if [ "${{ github.event.pull_request }}" != "" ]; then echo "${{ github.event.pull_request.html_url }}"; else echo "${{ github.event.compare }}"; fi)"
|
|
|
|
curl -d message="GitHub Actions [$GITHUB_REPOSITORY]($PR_OR_COMPARE) ($GITHUB_REF) [normal]($GITHUB_API_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID) ($GITHUB_RUN_NUMBER)" https://webhooks.gitter.im/e/7f95bf605c4d356372f4
|