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:
|
2024-01-18 19:35:08 +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:
|
2024-02-01 06:03:26 +03:00
|
|
|
version: v1.55.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]
|
2024-01-18 19:35:08 +03:00
|
|
|
go: ["1.18", "1.19", "1.20", "1.21"]
|
|
|
|
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 }}
|
2024-02-01 06:03:26 +03:00
|
|
|
cache: false
|
2021-06-23 08:10:49 +03:00
|
|
|
|
|
|
|
- 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
|
|
|
|
2024-02-01 07:17:36 +03:00
|
|
|
- uses: actions/cache@v4
|
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
|
2024-01-18 19:35:08 +03:00
|
|
|
if: matrix.go-version == '1.21.x'
|
2022-08-17 02:14:19 +03:00
|
|
|
run: diff -u <(echo -n) <(gofmt -d .)
|