Skip to content

feat:add fields for TTFB #652

feat:add fields for TTFB

feat:add fields for TTFB #652

Workflow file for this run

name: Go
on:
pull_request:
branches:
- main
- master
push:
branches:
- main
- master
jobs:
build:
name: Lint checks Go ${{ matrix.go-version }}
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Build
run: |
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin
$(go env GOPATH)/bin/golangci-lint run --config ./.golangci.yml
go vet ./...
test:
name: Testing Go ${{ matrix.go-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Set up Go ${{ matrix.go-version }} on ${{ matrix.os }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Test on ${{ matrix.os }}
if: matrix.os == 'ubuntu-latest'
run: |
go test -v -race ./...
GOARCH=386 GOOS=linux go test -v ./...
- name: Test on ${{ matrix.os }}
if: matrix.os != 'ubuntu-latest'
run: |
go test -v -race ./...