Optimize zap.Any to use less memory on stack (inline version) #574
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go | |
on: | |
push: | |
branches: ['*'] | |
tags: ['v*'] | |
pull_request: | |
branches: ['*'] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: ["1.19.x", "1.20.x"] | |
include: | |
- go: 1.20.x | |
latest: true | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
cache: true | |
cache-dependency-path: '**/go.sum' | |
- name: Download Dependencies | |
run: | | |
go mod download | |
(cd tools && go mod download) | |
(cd benchmarks && go mod download) | |
(cd zapgrpc/internal/test && go mod download) | |
- name: Lint | |
if: matrix.latest | |
run: make lint | |
- name: Test | |
run: make cover | |
- name: Upload coverage to codecov.io | |
uses: codecov/codecov-action@v3 | |
- name: vulncheck | |
if: matrix.latest | |
run: make vulncheck |