2021-06-23 08:10:49 +03:00
|
|
|
name: Run Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
2022-08-31 09:33:25 +03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-06-23 08:10:49 +03:00
|
|
|
jobs:
|
2021-08-19 10:46:31 +03:00
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup go
|
2023-12-13 05:27:25 +03:00
|
|
|
uses: actions/setup-go@v5
|
2021-08-19 10:46:31 +03:00
|
|
|
with:
|
2023-03-01 05:03:48 +03:00
|
|
|
go-version: '^1.18'
|
2021-08-19 10:46:31 +03:00
|
|
|
- name: Checkout repository
|
2023-09-08 17:18:00 +03:00
|
|
|
uses: actions/checkout@v4
|
2021-08-19 10:46:31 +03:00
|
|
|
- name: Setup golangci-lint
|
2023-08-27 11:58:10 +03:00
|
|
|
uses: golangci/golangci-lint-action@v3.7.0
|
2021-08-19 10:46:31 +03:00
|
|
|
with:
|
2023-04-26 09:13:56 +03:00
|
|
|
version: v1.52.2
|
2021-08-19 10:46:31 +03:00
|
|
|
args: --verbose
|
2021-06-23 08:10:49 +03:00
|
|
|
test:
|
2021-09-21 10:22:21 +03:00
|
|
|
needs: lint
|
2021-06-23 08:10:49 +03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest]
|
2023-03-01 05:03:48 +03:00
|
|
|
go: ['1.18', '1.19', '1.20']
|
2022-08-02 05:20:59 +03:00
|
|
|
test-tags: ['', '-tags nomsgpack', '-tags "sonic avx"', '-tags go_json']
|
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 }}
|
2023-12-13 05:27:25 +03:00
|
|
|
uses: actions/setup-go@v5
|
2021-06-23 08:10:49 +03:00
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go }}
|
|
|
|
|
|
|
|
- name: Checkout Code
|
2023-09-08 17:18:00 +03:00
|
|
|
uses: actions/checkout@v4
|
2021-06-23 08:10:49 +03:00
|
|
|
with:
|
|
|
|
ref: ${{ github.ref }}
|
2022-03-21 12:38:11 +03:00
|
|
|
|
2022-03-25 03:44:37 +03:00
|
|
|
- uses: actions/cache@v3
|
2021-08-19 10:46:31 +03:00
|
|
|
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
|
2022-04-17 09:16:17 +03:00
|
|
|
uses: codecov/codecov-action@v3
|
2021-08-19 10:46:31 +03:00
|
|
|
with:
|
|
|
|
flags: ${{ matrix.os }},go-${{ matrix.go }},${{ matrix.test-tags }}
|
2022-08-17 02:14:19 +03:00
|
|
|
|
|
|
|
- name: Format
|
2023-03-01 05:03:48 +03:00
|
|
|
if: matrix.go-version == '1.20.x'
|
2022-08-17 02:14:19 +03:00
|
|
|
run: diff -u <(echo -n) <(gofmt -d .)
|